C# 字符串类型介绍与操作
一、关于字符串操作的方法
System.String类提供了很多工具方法,包括返回字符数据长度,查找当前字符串中的子字符串和转换大小写等方法。
在String类中常用的比较字符串的方法主要有Compare()和CompareTo()和Equals()以及CompareOrdinal(),下面将分类解析:
1、Compare()和CompareTo()
(1)、Compare()是String类的静态方法,用于全面比较两个字符串对象,包括10种重载方法。
(2)、ConpareTo()将当前字符串对象与另一个对象做比较,其作用与Compare类似,返回值也相同。
他们之间的区别是Compare()是String类的静态方法,CompareTo()不是静态方法,可以通过String对象实例来调用;CompareTo()方法没有重载形式,只能按照字符串大小来比较两个字符串对象;
//Compare
string test = "";
string test1="";
int result=string.Compare(test, test1);
Console.WriteLine("Is test bigger than test1?{0}", result);//输出:-1 //CompareTo
int result1 = test.CompareTo(test1);
Console.WriteLine("Is test bigger than test1?{0}", result1);//输出:-1
上面的代码说明了Compare()和CompareTo()的区别
2、Compare()重载方法详解
(1)String.Compare(string strA,int indexA,string strB,int indexB,int length)
参数说明
strA ---要比较的第一个字符串对象
indexA ---要比较的第一个字符串对象中需要截取的子字符串的 开始的索引
strB ---要比较的第二个字符串对象
indexB ---要比较的第二个字符串对象中需要截取的子字符串的 开始的索引
length ---需要截取的子字符串的长度 注意:这个值不能小于0,但是可以大于字符串对象的长度(大于字符串对象的长度,就取字符串对象的长度)
string str1 = "machide";
string str2 = "device";
string str;
int result;
Console.WriteLine();
Console.WriteLine("str1={0},str2={1}", str1, str2);
result=string.Compare(str1,,str2,,);//比较
str = result < ? "less than" : result == ? "equal to" : "greater than";//equal to
Console.WriteLine("substring {0} in {1} is", str1.Substring(, ), str1);
Console.WriteLine("{0}", str);
Console.WriteLine("substring {0} in {1}", str2.Substring(, ), str2);
(2)String.Compare(string strA,int indexA,string strB,int indexB,int length, Boolean bool)
参数说明
strA ---要比较的第一个字符串对象
indexA ---要比较的第一个字符串对象中需要截取的子字符串的 开始的索引
strB ---要比较的第二个字符串对象
indexB ---要比较的第二个字符串对象中需要截取的子字符串的 开始的索引
length ---需要截取的子字符串的长度 注意:这个值不能小于0,但是可以大于字符串对象的长度(大于字符串对象的长度,就取字符串对象的长度)
bool ---需要比较的子字符串是否需要区分大小写
string str1 = "MACHIDE";
string str2 = "device";
string str,str3;
int result,result1;
Console.WriteLine("str1={0},str2={1}", str1, str2);
result=string.Compare(str1,,str2,,,false); //比较两个子字符串 区分大小写
str = result < ? "less than" : result == ? "equal to" : "greater than"; //输出:greater than
Console.WriteLine("substring {0} in {1} is", str1.Substring(, ), str1);
Console.WriteLine("{0}", str);//输出:greater than
Console.WriteLine("substring {0} in {1}", str2.Substring(, ), str2);
Console.WriteLine(); result1 = string.Compare(str1, , str2, ,, true);//设置true 比较两个子字符串 不区分大小写
str3 = result1 < ? "less than" : result1 == ? "equal to" : "greater than"; //输出:equal to
Console.WriteLine("substring {0} in {1} is", str1.Substring(, ), str1);
Console.WriteLine("{0}", str3);//输出:equal to
Console.WriteLine("substring {0} in {1}", str2.Substring(, ), str2);
(3)String.Compare 方法 (string strA,int indexA,string strB,int indexB,int length, Boolean bool, CultureInfo cultureinfo)
strA ---要比较的第一个字符串对象
indexA ---要比较的第一个字符串对象中需要截取的子字符串的 开始的索引
strB ---要比较的第二个字符串对象
indexB ---要比较的第二个字符串对象中需要截取的子字符串的 开始的索引
length ---需要截取的子字符串的长度 注意:这个值不能小于0,但是可以大于字符串对象的长度(大于字符串对象的长度,就取字符串对象的长度)
bool ---需要比较的子字符串是否需要区分大小写
cultureinfo ---程序的运行地域信息 详见http://blog.csdn.net/xuwei_xuwei/article/details/32717259
String str1 = "MACHINE";
String str2 = "machine";
String str;
int result; Console.WriteLine();
Console.WriteLine("str1 = '{0}', str2 = '{1}'", str1, str2);
Console.WriteLine("Ignore case, Turkish culture:");
result = String.Compare(str1, , str2, , , true, new CultureInfo("tr-TR"));//改变地域(相当于这个程序可能是给德国用户用的,这个时候就要改变)
str = ((result < ) ? "less than" : ((result > ) ? "greater than" : "equal to"));//less than 说明在"tr-TR"这个地域下in比in小
Console.Write("Substring '{0}' in '{1}' is ", str1.Substring(, ), str1);
Console.Write("{0} ", str);
Console.WriteLine("substring '{0}' in '{1}'.", str2.Substring(, ), str2); Console.WriteLine();
Console.WriteLine("Ignore case, invariant culture:");
result = String.Compare(str1, , str2, , , true, CultureInfo.InvariantCulture);//程序不会因为输出客户端的地域改变而造成不同的输出
str = ((result < ) ? "less than" : ((result > ) ? "greater than" : "equal to"));//equal to 默认地域下 in和in一样大
Console.Write("Substring '{0}' in '{1}' is ", str1.Substring(, ), str1);
Console.Write("{0} ", str);
Console.WriteLine("substring '{0}' in '{1}'.", str2.Substring(, ), str2);
(4)String.Compare 方法 (string strA,int indexA,string strB,int indexB,int length, Boolean bool, CultureInfo cultureinfo,CompareOptions CompareOptions.IgnoreCase)
strA ---要比较的第一个字符串对象
indexA ---要比较的第一个字符串对象中需要截取的子字符串的 开始的索引
strB ---要比较的第二个字符串对象
indexB ---要比较的第二个字符串对象中需要截取的子字符串的 开始的索引
length ---需要截取的子字符串的长度 注意:这个值不能小于0,但是可以大于字符串对象的长度(大于字符串对象的长度,就取字符串对象的长度)
cultureinfo ---程序的运行地域信息 详见http://blog.csdn.net/xuwei_xuwei/article/details/32717259
CompareOptions.IgnoreCase ---设置比较判断的子字符串不区分大小写
string name1 = "Jack Smith";
string name2 = "John Doe";
int result; // Get position of space character.
int index1 = name1.IndexOf(" ");
index1 = index1 < ? : index1++;
int index2 = name2.IndexOf(" ");
index2 = index2 < ? : index2++;
int length=Math.Max(name1.Length,name2.Length);
CultureInfo cultureinfo=new CultureInfo("en-US");//客户端所在的地域
CompareOptions ignoreCase = CompareOptions.IgnoreCase;//忽略要比较大小的两个子字符串的大小写
result = string.Compare(name1, index1, name2, index2, length, cultureinfo, ignoreCase);
string str = result < ? "less than" : result == ? "equal to" : "greater than";
Console.WriteLine("Jack Smith's Family Name is {0}", name1.Substring(index1));
Console.WriteLine("{0}", str);//输出:greater than
Console.WriteLine("John Doe's Family Name {0}", name2.Substring(index2));
(5)String.Compare 方法 (string strA,int indexA,string strB,int indexB,int length, StringComparison comparson)
strA ---要比较的第一个字符串对象
indexA ---要比较的第一个字符串对象中需要截取的子字符串的 开始的索引
strB ---要比较的第二个字符串对象
indexB ---要比较的第二个字符串对象中需要截取的子字符串的 开始的索引
length ---需要截取的子字符串的长度 注意:这个值不能小于0,但是可以大于字符串对象的长度(大于字符串对象的长度,就取字符串对象的长度)
comparson ---StringComparson枚举,下面是其成员
成员名称 | 说明 | |
---|---|---|
CurrentCulture |
使用区分区域性的排序规则和当前区域性比较字符串。 |
|
CurrentCultureIgnoreCase |
通过使用区分区域性的排序规则、当前区域性,并忽略所比较的字符串的大小写,来比较字符串。 |
|
InvariantCulture |
使用区分区域性的排序规则和固定区域性比较字符串。 |
|
InvariantCultureIgnoreCase |
通过使用区分区域性的排序规则、固定区域性,并忽略所比较的字符串的大小写,来比较字符串。 |
|
Ordinal |
使用序号(二进制)排序规则比较字符串。 |
|
OrdinalIgnoreCase |
通过使用序号(二进制)区分区域性的排序规则并忽略所比较的字符串的大小写,来比较字符串。 |
String str1 = "machVIne";
String str2 = "device";
String str;
int result;
Console.WriteLine();
Console.WriteLine("str1 = '{0}', str2 = '{1}'", str1, str2);
StringComparison comparison = StringComparison.CurrentCultureIgnoreCase;//通过使用区分区域性的排序规则、当前区域性,并忽略所比较的字符串的大小写,来比较字符串。
result = String.Compare(str1, , str2, , , comparison);
str = ((result < ) ? "less than" : ((result > ) ? "greater than" : "equal to"));
Console.Write("Substring '{0}' in '{1}' is ", str1.Substring(, ), str1);
Console.Write("{0} ", str);
Console.WriteLine("substring '{0}' in '{1}'.", str2.Substring(, ), str2);
3、Substring()方法详解
(1)string.Subtring(int startIndex )
index ---此实例中子字符串的起始字符位置(从零开始)。
注意:startIndex 小于零或大于此实例的长度,会报异常;
string[] info = { "name:张三", "age:23", "sex:男" };
Console.WriteLine("The initial values in the array are:");
foreach (string s in info) {
Console.WriteLine(" {0}", s);
}
Console.WriteLine("I want to retrieve the value information. That is");
foreach (string s in info) {
int index = s.IndexOf(":");
Console.WriteLine(" {0}", s.Substring(index + ));//当Substring()只给它一个int参数时,他默认截取从这个int参数开始到这个字符串的最后的这个子字符串
}
(2)string.Subtring(int startIndex,int count)
index ---截取的开始的索引(从零开始)。
count ---截取的长度
string str="Hello World";
Console.WriteLine("{0}", str.Substring(, ));//输出:H 注意不包含索引为1的那个字母
4、string.Contains()方法详解
作用:检测对象实例中是否包含与传入字符串参数相同的值 非静态方法
返回值:true/false
string.Contains(string value)
value ---需要检查的字符串参数
string str1 = "hello world";
Console.WriteLine("str1 Contains hello is {0}", str1.Contains("hello"));//输出:str1 Contains hello is True
5、string.Equals()方法详解
(1)equals(object ob) 非静态方法
作用:检测对象实例是否与传入的object参数相同 非静态方法
ob 要与检测对象实例进行比较的对象
object ob = ;
Console.WriteLine("ob is equal to 111? {0}", ob.Equals());//输出:ob is equal to 111? True
Console.WriteLine("ob is equal to 111? {0}", ob.Equals(""));//输出:ob is equal to 111? False
(2)equals(string str) 非静态方法
作用:检测对象实例是否与传入的string字符串参数相同 非静态方法
str 要与检测对象实例进行比较的字符串
string str = "hello";
Console.WriteLine("ob is equal to hello? {0}", str.Equals("hello"));//输出:ob is equal to hello? True
(3)string.equals(string str1,string str2) 静态方法
作用:判断传入的两个字符串对象是否相同
str1 字符串对象一
str2 字符串对象二
string str1 = "hello";
string str2 = "hello";
Console.WriteLine("str1 is equal to str2? {0}", string.Equals(str1, str2));//输出:str1 is equal to str2? True
(4)string.equals(string str1,string str2,StringComparison sc) 静态方法
作用:在StringComparison枚举指定的情况下,判断传入的两个字符串对象是否相同
str1 字符串对象一
str2 字符串对象二
sc StringComparson枚举,下面是其成员
成员名称 | 说明 | |
---|---|---|
CurrentCulture |
使用区分区域性的排序规则和当前区域性比较字符串。 |
|
CurrentCultureIgnoreCase |
通过使用区分区域性的排序规则、当前区域性,并忽略所比较的字符串的大小写,来比较字符串。 |
|
InvariantCulture |
使用区分区域性的排序规则和固定区域性比较字符串。 |
|
InvariantCultureIgnoreCase |
通过使用区分区域性的排序规则、固定区域性,并忽略所比较的字符串的大小写,来比较字符串。 |
|
Ordinal |
使用序号(二进制)排序规则比较字符串。 |
|
OrdinalIgnoreCase |
通过使用序号(二进制)区分区域性的排序规则并忽略所比较的字符串的大小写,来比较字符串。 |
string str1 = "hello";
string str2 = "HELLO";
StringComparison sc = StringComparison.CurrentCultureIgnoreCase;//忽略判断对象的大小写问题
Console.WriteLine("str1 is equal to str2? {0}", string.Equals(str1, str2, sc));//输出:str1 is equal to str2? True
(5)equals(string str,StringComparison sc) 非静态方法
作用:判断检测对象实例在StringComparison枚举指定的规则下,是否与str对象相同
str 需要判断字符串对象
sc 与上同
string str1 = "hello";
string str2 = "HELLO";
StringComparison sc = StringComparison.CurrentCultureIgnoreCase;//忽略判断对象的大小写问题
Console.WriteLine("str1 is equal to str2? {0}", str1.Equals(str2,sc));//输出:str1 is equal to str2? True
6、Insert(int startIndex,string value)方法详解 非静态
作用:从指定索引(startIndex)处,插入传入的字符串(value)
startIndex ---字符串从startIndex位置处开始插入
value ---要插入的内容
string animal1 = "fox";
string animal2 = "dog";
string strTarget = string.Format("The {0} jumped over {1}", animal1, animal2);
Console.WriteLine("The original string is:{0}{1}{0}", Environment.NewLine, strTarget);
Console.WriteLine("Enter an adjective(or group of adjectives)"
+ "to describe the {0}", animal1);
string adj1 = Console.ReadLine();
Console.WriteLine("Enter an adjective(or group of adjectives)"
+ "to describe the {0}", animal2);
string adj2 = Console.ReadLine();
adj1 = adj1.Trim() + " ";
adj2 = adj2.Trim() + " ";
strTarget = strTarget.Insert(strTarget.IndexOf(animal1), adj1);
strTarget = strTarget.Insert(strTarget.IndexOf(animal2), adj2);
Console.WriteLine("The final string is {0}", strTarget);
7、PadLeft()方法详解
(1)PadLeft(int length)
作用:返回一个新字符串,该字符串通过在此实例中的字符左侧填充空格来达到指定的总长度,从而实现右对齐。
length ---向左边填充空格来达到指定的总长度(length)
string str = "day day up";
Console.WriteLine("{0}", str.PadLeft());//输出: day day up这个字符串长度为20,左边填充的都是空格
(2)PadLeft(int length,Char ch)
作用:返回一个新字符串,该字符串通过在此实例中的字符左侧填充指定的传入字符(ch)来达到指定的总长度,从而实现右对齐
length ---总长度
ch ---用于在左边填充的字符
string str = "day day up";
Console.WriteLine("{0}", str.PadLeft(, '-'));//输出:----------day day up这个字符串长度为20,左边填充的都是'-'符
8、PadRight()方法详解
与PagLeft()相反
9、remove()方法详解
(1)remove(int startindex)
作用:删除字符串对象实例从startindex位置开始之后的所有的字符
startindex ---删除开始的位置索引
string str = "abc---def";
Console.WriteLine("1){0}", str.Remove());//输出:1)abc
(2)remove(int startindex,int count)
作用:删除字符串对象实例从startindex开始,并删除count个字符
startindex ---删除开始的位置索引
count ---要删除的字符个数
string str = "abc---def";
Console.WriteLine("1){0}", str.Remove(, ));//输出:1)abcdef
10、Replace()方法详解
(1)、Replace(Char ch1,Char ch2)
作用:将字符串对象实例中的ch1字符替换成ch2字符
ch1 ---老字符(字符串对象实例中的字符)
ch2 ---要替换的新字符
string s = new String('a', );
Console.WriteLine("{0}", s);
s = s.Replace('a', 'b').Replace('b', 'c').Replace('c', 'd');
Console.WriteLine("The final s is {0}", s);
(2)、Replace(string oldValue,string newValue)
作用:将字符串对象实例中的oldValue字符串对象替换成newValue字符串对象实例
oldValue ---要替换的字符串对象(字符串对象实例中的字符)
newValue ---替换的新字符串对象
string s = new String('a', );
Console.WriteLine("{0}", s);
s = s.Replace("aa", "bb");
Console.WriteLine("The final s is {0}", s);//输出:The final s is bba
C# 字符串类型介绍与操作的更多相关文章
- C#核编之字符串类型介绍与操作
一.关于字符串操作的方法 System.String类提供了很多工具方法,包括返回字符数据长度,查找当前字符串中的子字符串和转换大小写等方法. 在String类中常用的比较字符串的方法主要有Compa ...
- 5.List链表类型介绍和操作
数据类型List链表 (1)介绍 list类型其实就是一个双向链表.通过push,pop操作从链表的头部或者尾部添加删除元素.这使得list既可以用作栈,也可以用作队列. 该list链表类型应用场景: ...
- systemverilog 字符串类型
转载:https://blog.csdn.net/Holden_Liu/article/details/100727957 传统的Veriog仅仅支持文字表述上的字符串, 而SystemVerilog ...
- Python基础之字符串类型内置方法
目录 1. 字符串类型 2. 常用操作及内置方法 3. 其他内置方法 1. 字符串类型 用途:姓名,性别等 定义: name1 = 'zhaojun' name2 = "zhaojun&qu ...
- StackExchange.Redis帮助类解决方案RedisRepository封装(字符串类型数据操作)
本文版权归博客园和作者本人共同所有,转载和爬虫请注明原文链接 http://www.cnblogs.com/tdws/tag/NoSql/ 目录 一.基础配置封装 二.String字符串类型数据操作封 ...
- 常用php操作redis命令整理(一)通用及字符串类型
Key相关操作 TYPE 类型检测,字符串返回string,列表返回 list,set表返回set/zset,hash表返回hash,key不存在返回0 <?php echo $redis-&g ...
- python之Redis的字符串类型操作
redis的数据类型: 字符串型 哈希 列表 集合 有序集合 1.String(字符串类型) set 命令: 设置一个键和值,键存在则只覆盖,返回ok > s ...
- python学习笔记(5-1)-基本数据类型-字符串类型及操作
五.字符串处理函数 len(x):字符串x的长度.如len("12345")结果为5 str(x):任意类型x所对应的字符串形式. >>> str(123) ...
- redis:string字符串类型的操作
1. string字符串类型的操作: 1.1. set 设置单个值 语法:set key value [EX seconds] [PX milliseconds] [NX|XX] 注: EX seco ...
随机推荐
- UVa 11925 Generating Permutations (构造法)
题意:给定一个序列,让你从一个升序列变成该序列,并且只有两种操作,操作1:交换前两个元素,操作2:把第一个元素移动到最后. 析:一开始的时候吧,不会,还是看的题解,首先是要逆序来做,这样可能好做一点, ...
- java并发编程实战:第七章----取消与关闭
Java没有提供任何机制来安全地终止线程(虽然Thread.stop和suspend方法提供了这样的机制,但由于存在缺陷,因此应该避免使用 中断:一种协作机制,能够使一个线程终止另一个线程的当前工作 ...
- centos7 mysql 数据库备份与还原
数据库备份 show databases; #先查看一下数据库 现在我要备份word数据库 退出mysql输入 mysqldump -u root -p word > word.sql #我把它 ...
- 试题 C: 数列求值 蓝桥杯
试题 C: 数列求值本题总分: 10 分[问题描述]给定数列 1, 1, 1, 3, 5, 9, 17, …,从第 4 项开始,每项都是前 3 项的和.求第 20190324 项的最后 4 位数字.[ ...
- Android-封装JSON数据(JSON对象/JSON数组)
Android-封装JSON数据(JSON对象/JSON数组),一般情况下不会在Android端封装JSON的数据,因为封装JSON的数据是在服务器端进行封装了,Android更多的工作是解析(JSO ...
- 【转】敏捷开发之Scrum扫盲篇
现在敏捷开发是越来越火了,人人都在谈敏捷,人人都在学习Scrum和XP... 为了不落后他人,于是我也开始学习Scrum,今天主要是对我最近阅读的相关资料,根据自己的理解,用自己的话来讲述Scrum中 ...
- Jenkins权限管控
需求: 不同的账号角色进入只能看到自己对应的项目,且只能拥有构建等基本权限. 如wechat用户进入系统只能看到以wechat开头的job(具体匹配什么名称的job,可以设置) 目录: 1.安装插件 ...
- CF79D Password
题目链接 题意:给定长度为n的0/1序列,初始值都为0.你每次可以在给定的l个长度中的\(a_i\)并将序列中长度为\(a_i\)的部分取反.使得最终状态为\(x_1\)~\(x_k\),求最少取反次 ...
- C#读入整数
// ClassLibrary1.h #include<iostream> #pragma once using namespace System; namespace ClassLibr ...
- H - Graphics(dfs)
H - Graphics Time Limit:1000MS Memory Limit:131072KB 64bit IO Format:%lld & %llu Submi ...