一栽渴、幾個經(jīng)常用到的字符串的截取
string str="123abc456";
int i=3;
1 取字符串的前i個字符
str=str.Substring(0,i); // or str=str.Remove(i,str.Length-i);
2 去掉字符串的前i個字符:
str=str.Remove(0,i); // or str=str.Substring(i);
3 從右邊開始取i個字符:
str=str.Substring(str.Length-i); // or str=str.Remove(0,str.Length-i);
4 從右邊開始去掉i個字符:
str=str.Substring(0,str.Length-i); // or str=str.Remove(str.Length-i,i);
5 如果字符串中有"abc"則替換成"ABC"
str=str.Replace("abc","ABC");
二尖坤、IndexOf和LastIndexOf是什么?
indexOf 和 lastIndexOf 都是索引文件
indexOf 是查某個指定的字符串在字符串首次出現(xiàn)的位置(索引值) (也就是從前往后查)闲擦。
Index("",0)//0代表從指定位置開始查詢慢味,查詢失敗后返回 -1
lastIndexOf 是從右向左查某個指定的字符串在字符串中最后一次出現(xiàn)的位置(也就是從后往前查)
三、字符串指定字符截取轉數(shù)組
string[] sArray=st.Trim().Split(';');
四墅冷、三個數(shù)值取最大值和最小值
int i=1;
int j=2;
int k=3;
int minNum=Math.Min(Math.Min(i,j),k);//最小值
int maxNum=Math.Max(Math.Max(i,j),k);//最大值
五纯路、字符串移除再插入
lon = lon.Remove(a, 1).Insert(a, "°");
//先找出位置
int pos=s.indexOf(fs);
//取位置前部分+替換字符串+位置(加上查找字符長度)后部分
string newstr = s.substring(0,pos)+th+s.substring(pos+fs.length);
六、String.IndexOf
String.IndexOf 方法 (Char, Int32, Int32)
報告指定字符在此實例中的第一個匹配項的索引(從0開始)寞忿。搜索從指定字符位置開始驰唬,并檢查指定數(shù)量的字符位置。
String.IndexOf(value, startIndex, count)
參數(shù)
value:要查找的 Unicode 字符腔彰。
startIndex:搜索起始位置叫编。
count:要檢查的字符位置數(shù)。
返回值(Int32):
如果找到該字符霹抛,則為 value 的索引位置宵溅;否則如果未找到,則為 -1上炎。
七、String.LastIndexOf
String.LastIndexOf 方法
報告指定的 Unicode 字符或 String 在此實例中的最后一個匹配項的索引位置。
八藕施、String.Substring
String.Substring 方法
從此實例檢索子字符串寇损。
名稱 說明
String.Substring (Int32) 從此實例檢索子字符串。子字符串從指定的字符位置開始裳食。
String.Substring (Int32, Int32) 從此實例檢索子字符串矛市。子字符串從指定的字符位置開始機截取有指定的長度。
九诲祸、C#字符串比較的原理是什么浊吏?
原理:
從兩個字符串的第一個字符開始逐個進行比較(按字符的ASCII值進行大小比較),直到出現(xiàn)不同的字符或遇到‘\0’為止救氯。
如果全部字符都相同找田,就認為兩字符串相等,返回0着憨;
若出現(xiàn)了不相同的字符墩衙,則以第一個不相同的字符比較結果為準,若前者字符大于后者甲抖,則返回1漆改,否則返回-1.
注意:
順序是第一個對象與第二個對象比較!
前>后 return 1;
前=后 return 0准谚;
前<后 return -1
CompareTo方法與Compare方法實現(xiàn)的功能是一樣的挫剑,只是參數(shù)的位置放的不一樣而已
eg. s1.CompareTo(s2):
表示字符串s1與s2進行大小比較,
s1<s2 s1.CompareTo(s2)結果為:-1
s1=s2 s1.CompareTo(s2)結果為:0
s1>s2 s1.CompareTo(s2)結果為:1
eg . String.Compare(s1,s2)該方法所顯現(xiàn)的功能與上面一樣柱衔,連返回值結果也一樣樊破。
表示字符串s1與s2進行大小比較,
s1<s2 String.Compare(s1,s2)結果為:-1
s1=s2 String.Compare(s1,s2)結果為:0
s1>s2 String.Compare(s1,s2)結果為:1
十秀存、將字符串轉換成字符數(shù)組
char[] ca = strText.ToCharArray();
十一捶码、獲取兩個字符串的相似度
//比較兩個字符串的相似度
public float GetSimilarityWith(string str1, string str2)
{
//計算兩個字符串的長度。
int len1 = str1.Length;
int len2 = str2.Length;
//建立上二維數(shù)組
int[,] dif = new int[len1 + 1, len2 + 1];
//賦初始值或链。
for (int a = 0; a <= len1; a++)
{
dif[a, 0] = a;
}
for (int a = 0; a <= len2; a++)
{
dif[0, a] = a;
}
//計算兩個字符是否一樣惫恼,計算左上的值
int temp;
for (int i = 1; i <= len1; i++)
{
for (int j = 1; j <= len2; j++)
{
if (str1[i - 1] == str2[j - 1])
{
temp = 0;
}
else
{
temp = 1;
}
//取三個值中最小的
dif[i, j] = Math.Min(Math.Min(dif[i - 1, j - 1] + temp, dif[i, j - 1] + 1), dif[i - 1, j] + 1);
}
}
//計算相似度
float similarity = 1 - (float)dif[len1, len2] / Math.Max(str1.Length, str2.Length);
return similarity;
}
十二、給定一個字符串澳盐,判斷其是否只包含有漢字
private bool IsChinese(string str)
{
Regex rx = new Regex("^[\u4e00-\u9fa5]$");
for (int i = 0; i < str.Length; i++)
{
if (rx.IsMatch(str.Substring(i, 1)))
{
continue;
}
else
{
return false;
}
}
return true;
}