-----
C#
语言中的字符串具有精神分裂的天性——即字符串既是本地类型又是类的对象。实际上更准确的说法应该是可以把字符串作为本地数据值来使用,但是事实上每个产生的字符串都是String类的一个对象。String类的对象是不变的,这就意味着不能对他们进行改变。每次改变String对象的值时,就会产生一个新的对象来保存数值。
----
比较字符大小,
一种方式 使用 asc2值比较,比如比较 "a"与"b"的大小. 使用unicode表.每个字符有一个unicode值,操作系统就是用此数值把字符的二进制表示转化成字符的形式., 先使用asc函数确定字符unicode值,asc值就是asc2码,
获取asc值,
int charCode=(int)'a'; 强制转换,
另外一种也可以使用compareTo 精确比较.返回0表示等于,-1 是小于, 1是大于. 等同于string.compare()方法
----
PadRight,PadLeft,往右,或往左填补一定长度字符.
-----
Concat 功能相当join.
------
Trim(),TrimEnd()
string[] htmlComments = new string[]
{
"<!-- Start Page Number Function -->",
"<!-- Get user name and password -->",
"<!-- End Title page -->",
"<!-- End script -->"
};
char[] commentChars = new char[] { '<', '!', '-', '>' };
for (int i = 0; i <= htmlComments.GetUpperBound(0); i++)
{
htmlComments[i] = htmlComments[i].Trim(commentChars);
// htmlComments[i] = htmlComments[i].TrimEnd(commentChars);
}
for (int i = 0; i <= htmlComments.GetUpperBound(0); i++)
Console.WriteLine("Comment: " + htmlComments[i]);
结果
---------
Commen: Start Page Number Function
Commen: Get user name and password
Commen: End Title page
Commen: End script