- 1、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
* * * * * * * * * * * * * * * * * * */19 JILIN UNIVERSITY College of Computer Science Technology */19 */19 */19 */19 */19 */19 */19 */19 */19 */19 9 Strings and Regular Expressions Shuai Lü 2012.9.5 0. Introduction The string keyword in C# actually refers to the System.String .NET base class. System.Text System.Text.StringBuilder IFormatProvider, IFormattable System.Text.RegularExpressions 1. System.String System.String is a class specifically designed to store a string and allow a large number of operations on the string. You can concatenate strings using operator overloads string message1 = Hello; // returns Hello message1 += , There; // returns Hello, There string message2 = message1 + !; // returns Hello, There! C# also allows extraction of a particular character using an indexer-like syntax string message = Hello; char char4 = message[4]; // returns o. Note the string is zero-indexed 1. System.String The key methods of System.String Compare, CompareOrdinal Concat, CopyTo, Insert, Join, Replace, Split, Substring Format IndexOf, IndexOfAny, LastIndexOf, LastIndexOfAny PadLeft, PadRight ToLower, ToUpper, Trim 1. System.String The String class has a shortcoming that makes it very inefficient for making repeated modifications to a given string — it is actually an immutable data type, which means that after you initialize a string object, that string object can never change. The methods and operators that appear to modify the contents of a string actually create new strings, copying across the contents of the old string if necessary. 1. System.String string greetingText = Hello from all the guys at Wrox Press. ; //39 chs greetingText += We do hope you enjoy this book as much as we enjoyed writing it.; // 39+65-1=103 chs for(int i = z; i = a; i--) { char old1 = (char)i; char new1 = (char)(i+1); greetingText = greetingText.Replace(old1, new1); } for(int i = Z; i =A; i--) … Console.WriteLine(Encoded:\n + greetingText); 2. System.Text.StringBuilder The StringBuil
您可能关注的文档
- #2发电机增容改造(电机班).ppt
- #LAMP人#身随心动—《汉字工具箱》开发历程.ppt
- #基础教程套接字中对象.ppt
- #基础教程套接字客户端编程.ppt
- #基础教程扩展示例返回值和通用编码.ppt
- #数据类型与表达式.ppt
- #词汇记忆法#词根词缀.ppt
- #第1章材料的性能.ppt
- #语法基础数据类型.ppt
- (15班)如何提高学习效率.ppt
- 养老评估师中级行为面试题库及案例分析.docx
- 面试培训督导时考察其课程理解能力的题目.docx
- 税务专员面试中关于增值税政策的常见问题解答.docx
- 2025宁波市医疗保障局局属事业单位宁波市医疗保障基金管理中心招聘事业编制工作人员1人备考试题附答案.docx
- 2025咸宁市汉口银行咸宁嘉鱼支行招聘笔试历年题库附答案解析.docx
- 2025北京人才发展战略研究院招录笔试备考题库附答案.docx
- 2025四川成都市龙泉驿区青台山中学校秋季教师招聘22人笔试试题附答案解析.docx
- 2025台州市银龄讲学计划教师招募13人笔试参考试题附答案解析.docx
- 2025中国铁建公开招聘42人笔试题库附答案.docx
- 2025中智咨询研究院社会招聘笔试参考题库附答案.docx
有哪些信誉好的足球投注网站
文档评论(0)