首页 > 软件操作教程 > 编程开发 > C#
题目内容

字符串的操作方法

题目答案

1.索引字符串中的单个字符

string str = “abcd”;

char c = str[0];

2.字符串连接

string s1 = “My age = “;

int myAge = 28;

string cat = s1 + myAge;

3.抽取和定位子串

string poem = “In Xanadu did Kubla Khan”;

string poemSeg = poem.Substring(10);

poemSeg = poem.Substring(0,9);

int index = poem.IndexOf(“I”);

index = poem.LastIndexOf(“n”);

4.比较字符串

bool isMatch;

string title = "Ancient Mariner";

isMatch = (title == "ANCIENT AMRINER");

isMatch = (title.ToUpper() == "ANCIENT MARINER");

isMatch = title.Equals("Ancient Mariner");


网友评论(共0条评论)

请自觉遵守互联网相关政策法规,评论内容只代表网友观点!

最新评论

点击加载更多评论>>

软件操作 新人注册送三重礼

已有 22658 名学员学习以下课程通过考试

相关视频试题

最需教育客户端 软件问题一手掌握

去 App Store 免费下载 iOS 客户端