zoukankan      html  css  js  c++  java
  • C# 所有单词首字母改为大写的方法

    首先要添加引用Microsoft.VisualBasic,还要添加命名空间:using Microsoft.VisualBasic; 下面是代码:

    代码
    using System;
    using System.Windows.Forms;
    using Microsoft.VisualBasic;
    namespace VBWordDeal
    {
        
    public partial class Form2 : Form
        {
            
    public Form2()
            {
                InitializeComponent();
            }
            
    private void button1_Click(object sender, EventArgs e)
            {
                textBox2.Text 
    = ConvertToUpper(textBox1.Text.Trim());
            }
            
    /// <summary>
            
    /// 返回所有单词首字改为大写后的结果
            
    /// </summary>
            
    /// <param name="str">普通字符串</param>
            
    /// <returns>所有单词更改为首字母大写</returns>
            public string ConvertToUpper(string str)
            {
                
    string S = Strings.StrConv(str, VbStrConv.ProperCase, System.Globalization.CultureInfo.CurrentCulture.LCID);
                
    return S;
            }
        }
    }

     

    来源:http://www.pczpg.com/a/2010/0526/9800.html


  • 相关阅读:
    DC综合流程
    DC set_tcl脚本配置
    同步FIFO设计
    顺序脉冲 发生器
    状态机的写法
    verilog串并转换
    indexOf()
    jQuery 效果
    jQuery 事件
    jQuery css
  • 原文地址:https://www.cnblogs.com/tukzer/p/1804690.html
Copyright © 2011-2022 走看看