字符串的本质
using System;
namespace Lesson10
{
class MainClass
{
public static void Main (string[] args)
{
// char c = 'a';
// Console.WriteLine (c);
//
// string s1= "Hello";
// string s2="World";
// Console.WriteLine (s1+s2);
// if (s1 == s2) {
// Console.WriteLine ("文本相同");
// } else {
// Console.WriteLine ("文本不同");
// }
// 字符串string 本质上是一个char 类型 的数组
// char [] cc= new char[3];
// cc[0]='A';
// cc[1]='B';
// string str = "ABCD";
// // 可以使用下表索引字符串中的字符元素
// Console.WriteLine (str[0]);
string str = "12/34563/789";
// 检测字符串中是否包含指定的子字符串
bool b = str.Contains ("345");
Console.WriteLine (b);
// 用来返回字符串中首次出现指定字符发下表位置
int i = str.IndexOf('3');
int j = str.IndexOf("37");
Console.WriteLine (i);
Console.WriteLine (j);
// 从指定下表位置删除后面的子字符串(两个参数的时候从指定位置删除指定个数)
string ss=str.Remove(3,2);
Console.WriteLine (ss);
// 替换指定的自字符串或者字符
// string s = str.Replace('3','x');
string s = str.Replace("63","bbb");
Console.WriteLine (s);
// 使用指定的字符标志来分割字符串获得子字符串
string [] strs=str.Split(new char[] {'/'},4);
foreach (string temps in strs) {
Console.WriteLine (temps);
}
// 获取子字符串
// string ta=str.Substring(4);
string ta=str.Substring(4,3);
Console.WriteLine (ta);
}
}
}
链接:http://edu.csdn.net/course/detail/2050/31832?auto_start=1