C#中String的用法

String 类的属性

属性名称描述
Chars在当前 String 对象中获取 Char 对象的指定位置。
Length在当前的 String 对象中获取字符数。

String 类的方法
String 类有许多方法用于 string 对象的操作。下面的表格提供了一些最常用的方法:

序号方法名称&描述
1public static int Compare( string strA, string strB ) 比较两个指定的 string 对象,并返回一个表示它们在排列顺序中相对位置的整数。该方法区分大小写。
2public static int Compare( string strA, string strB, bool ignoreCase ) 比较两个指定的 string 对象,并返回一个表示它们在排列顺序中相对位置的整数。但是,如果布尔参数为真时,该方法不区分大小写。
3public static string Concat( string str0, string str1 ) 连接两个 string 对象。
4public static string Concat( string str0, string str1, string str2 ) 连接三个 string 对象。
5public static string Concat( string str0, string str1, string str2, string str3 ) 连接四个 string 对象。
6public bool Contains( string value ) 返回一个表示指定 string 对象是否出现在字符串中的值。
7public static string Copy( string str ) 创建一个与指定字符串具有相同值的新的 String 对象。
8public void CopyTo( int sourceIndex, char[] destination, int destinationIndex, int count ) 从 string 对象的指定位置开始复制指定数量的字符到 Unicode 字符数组中的指定位置。
9public bool EndsWith( string value ) 判断 string 对象的结尾是否匹配指定的字符串。
10public bool Equals( string value ) 判断当前的 string 对象是否与指定的 string 对象具有相同的值。
11public static bool Equals( string a, string b ) 判断两个指定的 string 对象是否具有相同的值。
12public static string Format( string format, Object arg0 ) 把指定字符串中一个或多个格式项替换为指定对象的字符串表示形式。
13public int IndexOf( char value ) 返回指定 Unicode 字符在当前字符串中第一次出现的索引,索引从 0 开始。
14public int IndexOf( string value ) 返回指定字符串在该实例中第一次出现的索引,索引从 0 开始。
15public int IndexOf( char value, int startIndex ) 返回指定 Unicode 字符从该字符串中指定字符位置开始搜索第一次出现的索引,索引从 0 开始。
16public int IndexOf( string value, int startIndex ) 返回指定字符串从该实例中指定字符位置开始搜索第一次出现的索引,索引从 0 开始。
17public int IndexOfAny( char[] anyOf ) 返回某一个指定的 Unicode 字符数组中任意字符在该实例中第一次出现的索引,索引从 0 开始。
18public int IndexOfAny( char[] anyOf, int startIndex ) 返回某一个指定的 Unicode 字符数组中任意字符从该实例中指定字符位置开始搜索第一次出现的索引,索引从 0 开始。
19public string Insert( int startIndex, string value ) 返回一个新的字符串,其中,指定的字符串被插入在当前 string 对象的指定索引位置。
20public static bool IsNullOrEmpty( string value ) 指示指定的字符串是否为 null 或者是否为一个空的字符串。
21public static string Join( string separator, string[] value ) 连接一个字符串数组中的所有元素,使用指定的分隔符分隔每个元素。
22public static string Join( string separator, string[] value, int startIndex, int count ) 连接接一个字符串数组中的指定位置开始的指定元素,使用指定的分隔符分隔每个元素。
23public int LastIndexOf( char value ) 返回指定 Unicode 字符在当前 string 对象中最后一次出现的索引位置,索引从 0 开始。
24public int LastIndexOf( string value ) 返回指定字符串在当前 string 对象中最后一次出现的索引位置,索引从 0 开始。
25public string Remove( int startIndex ) 移除当前实例中的所有字符,从指定位置开始,一直到最后一个位置为止,并返回字符串。
26public string Remove( int startIndex, int count ) 从当前字符串的指定位置开始移除指定数量的字符,并返回字符串。
27public string Replace( char oldChar, char newChar ) 把当前 string 对象中,所有指定的 Unicode 字符替换为另一个指定的 Unicode 字符,并返回新的字符串。
28public string Replace( string oldValue, string newValue ) 把当前 string 对象中,所有指定的字符串替换为另一个指定的字符串,并返回新的字符串。
29public string[] Split( params char[] separator ) 返回一个字符串数组,包含当前的 string 对象中的子字符串,子字符串是使用指定的 Unicode 字符数组中的元素进行分隔的。
30public string[] Split( char[] separator, int count ) 返回一个字符串数组,包含当前的 string 对象中的子字符串,子字符串是使用指定的 Unicode 字符数组中的元素进行分隔的。int 参数指定要返回的子字符串的最大数目。
31public bool StartsWith( string value ) 判断字符串实例的开头是否匹配指定的字符串。
32public char[] ToCharArray()返回一个带有当前 string 对象中所有字符的 Unicode 字符数组。
33public char[] ToCharArray( int startIndex, int length ) 返回一个带有当前 string 对象中所有字符的 Unicode 字符数组,从指定的索引开始,直到指定的长度为止。
34public string ToLower()把字符串转换为小写并返回。
35public string ToUpper()把字符串转换为大写并返回。
36public string Trim()移除当前 String 对象中的所有前导空白字符和后置空白字符。

String方法


String方法


staticvoid Main(string[] args)
{
            string s ="";
            //1)字符访问(下标访问s[i])
            s ="ABCD";
            Console.WriteLine(s[0]); // 输出"A";
            Console.WriteLine(s.Length); // 输出4
            Console.WriteLine();

            //2)打散为字符数组(ToCharArray)
            s ="ABCD";
            char[] arr = s.ToCharArray(); // 把字符串打散成字符数组{'A','B','C','D'}
            Console.WriteLine(arr[0]); // 输出数组的第一个元素,输出"A"
            Console.WriteLine();

            //3)截取子串(Substring)
            s ="ABCD";
Console.WriteLine(s.Substring(1)); // 从第2位开始(索引从0开始)截取一直到字符串结束,输出"BCD"
            Console.WriteLine(s.Substring(1, 2)); // 从第2位开始截取2位,输出"BC"
            Console.WriteLine();

            //4)匹配索引(IndexOf())
            s ="ABCABCD";
            Console.WriteLine(s.IndexOf('A')); // 从字符串头部开始搜索第一个匹配字符A的位置索引,输出"0"
            Console.WriteLine(s.IndexOf("BCD")); // 从字符串头部开始搜索第一个匹配字符串BCD的位置,输出"4"
            Console.WriteLine(s.LastIndexOf('C')); // 从字符串尾部开始搜索第一个匹配字符C的位置,输出"5"
            Console.WriteLine(s.LastIndexOf("AB")); // 从字符串尾部开始搜索第一个匹配字符串AB的位置,输出"3"
            Console.WriteLine(s.IndexOf('E')); // 从字符串头部开始搜索第一个匹配字符串E的位置,没有匹配输出"-1";
            Console.WriteLine(s.Contains("ABCD")); // 判断字符串中是否存在另一个字符串"ABCD",输出true
            Console.WriteLine();

            //5)大小写转换(ToUpperToLower)
            s ="aBcD";
            Console.WriteLine(s.ToLower()); // 转化为小写,输出"abcd"
            Console.WriteLine(s.ToUpper()); // 转化为大写,输出"ABCD"
            Console.WriteLine();

            //6)填充对齐(PadLeftPadRight)
            s ="ABCD";
            Console.WriteLine(s.PadLeft(6, '_')); // 使用'_'填充字符串左部,使它扩充到6位总长度,输出"__ABCD"
            Console.WriteLine(s.PadRight(6, '_')); // 使用'_'填充字符串右部,使它扩充到6位总长度,输出"ABCD__"
            Console.WriteLine();

            //7)截头去尾(Trim)
            s ="__AB__CD__";
            Console.WriteLine(s.Trim('_')); // 移除字符串中头部和尾部的'_'字符,输出"AB__CD"
            Console.WriteLine(s.TrimStart('_')); // 移除字符串中头部的'_'字符,输出"AB__CD__"
            Console.WriteLine(s.TrimEnd('_')); // 移除字符串中尾部的'_'字符,输出"__AB__CD"
            Console.WriteLine();

            //8)插入和删除(InsertRemove)
            s ="ADEF";
            Console.WriteLine(s.Insert(1, "BC")); // 在字符串的第2位处插入字符串"BC",输出"ABCDEF"
            Console.WriteLine(s);
            Console.WriteLine(s.Remove(1)); // 从字符串的第2位开始到最后的字符都删除,输出"A"
            Console.WriteLine(s);
            Console.WriteLine(s.Remove(0, 2)); // 从字符串的第1位开始删除2个字符,输出"EF"
            Console.WriteLine();

            //9)替换字符(串)(Replace)
            s ="A_B_C_D";
            Console.WriteLine(s.Replace('_', '-')); // 把字符串中的'_'字符替换为'-',输出"A-B-C-D"
            Console.WriteLine(s.Replace("_", "")); // 把字符串中的"_"替换为空字符串,输出"A B C D"
            Console.WriteLine();

            //10)分割为字符串数组(Split)——互逆操作:联合一个字符串静态方法Join(seperator,arr[])
            s ="AA,BB,CC,DD";
            string[] arr1 = s.Split(','); //','字符对字符串进行分割,返回字符串数组
            Console.WriteLine(arr1[0]); // 输出"AA"
            Console.WriteLine(arr1[1]); // 输出"BB"
            Console.WriteLine(arr1[2]); // 输出"CC"
            Console.WriteLine(arr1[3]); // 输出"DD"
            Console.WriteLine();

            s ="AA--BB--CC--DD";
            string[] arr2 = s.Replace("--", "-").Split('-'); // 以字符串进行分割的技巧:先把字符串"--"替换为单个字符"-",然后以'-'字符对字符串进行分割,返回字符串数组
            Console.WriteLine(arr2[0]); // 输出"AA"
            Console.WriteLine(arr2[1]); // 输出"BB"
            Console.WriteLine(arr2[2]); // 输出"CC"
            Console.WriteLine(arr2[3]); // 输出"DD"
            Console.WriteLine();

            //11)格式化(静态方法FormatConsole.WriteLine(string.Format("{0} + {1} = {2}", 1, 2, 1+2));
            Console.WriteLine(string.Format("{0} / {1} = {2:0.000}", 1, 3, 1.00/3.00));
            Console.WriteLine(string.Format("{0:yyyy年MM月dd日}", DateTime.Now));


            //12)连接成一个字符串(静态方法Concat、静态方法Join和实例方法StringBuilder.Append)
            s ="A,B,C,D";
            string[] arr3 = s.Split(','); // arr = {"A","B","C","D"}

            Console.WriteLine(string.Concat(arr3)); // 将一个字符串数组连接成一个字符串,输出"ABCD"

            Console.WriteLine(string.Join(",", arr3)); //","作为分割符号将一个字符串数组连接成一个字符串,输出"A,B,C,D"

            StringBuilder sb =new StringBuilder(); // 声明一个字符串构造器实例
            sb.Append("A"); // 使用字符串构造器连接字符串能获得更高的性能
            sb.Append('B');
            Console.WriteLine(sb.ToString());// 输出"AB"

            Console.ReadKey();
        }
  • 12
    点赞
  • 43
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
### 回答1: string.format是一个Python字符串格式化的方法,它允许您使用特殊字符来定义字符串的格式,并将变量值插入到字符串。用户可以在花括号添加单词、数字和其他字符来定义字符串的格式,并使用.format()方法将变量值插入到字符串。它是一种更简便的做法来格式化Python的字符串。 ### 回答2: C是一种高级编程语言,由美国计算机专家丹尼斯·里奇在20世纪70年代初期开发。它是一种结构化语言,非常适合用于编写系统软件和应用程序。C语言支持一个很好的编程风格,可以很容易地扩展到其他编程语言,比如C++和Java。 C语言的优点之一是它是一种非常灵活的语言,可以适应各种不同的编程风格。它的语法简洁清晰,功能强大,运行速度快,内存占用少,支持多线程操作。近年来,C语言已成为许多高性能应用程序(如游戏、图形处理、嵌入式系统等)和操作系统的首选编程语言。此外,许多学校和大学也将C语言作为计算机科学和工程专业的基本要求,以培养学生的编程能力和技能。 然而,C语言也有一些缺点。它的语法和语义比较复杂,程序设计时容易出错和难以维护。由于C语言缺乏自动垃圾回收机制,程序员需要手动管理内存,增加了程序设计的难度。此外,C语言也不支持面向对象编程,这使得编写大型程序和维护代码变得更加困难。 总的来说,C语言仍然是一种非常流行和重要的编程语言,能够帮助程序员构建高性能和高效的应用程序。学习C语言不仅可以为我们提供一种高效的程序设计语言,同时也可以培养我们的编程技能和算法思维,开发出更加高效和优秀的程序。 ### 回答3: 很抱歉,我无法回答您的问题。因为您的问题只有一个字母 C,缺乏上下文和明确的意思,无法理解您的意图。如果您能提供更多信息和明确的问题,我会尽力为您提供最佳的答案。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值