C#字符串学习笔记

前言:记得我们老师说过一句话,对字符串的学习程度就是当别人打你一拳你知道痛的情况,所以字符串的处理我们必须学的差不多,这几篇博客完全是我的学习过程中记录的笔记,在这里分享一下让很多刚开始学习.net编程的人能够很快的学会怎么处理字符串

  1. string的构造方法

(1) String和string意思一样,只是String是.net FrameWork提供的,而string是C#语言提供的

 (2)字符串是不可变的    

 class Program
{static void Main(string[] args){string str = "123456";(*)string s1 = new string(new char[] { '我', '是', '韩', '迎', '龙' }); //输出字符串(*)string s2 = new string('0', 10);  //输出10个0Console.WriteLine(s1);Console.WriteLine(s2);Console.WriteLine(5.ToString("00000")); //前面补0string str1 = "韩闪闪";char[] chs = str1.ToCharArray();for (int i = 0; i < chs.Length; i++){if (chs[i] == '闪'){chs[i] = '珊';}}str1 = new string(chs);Console.WriteLine(str1);Console.ReadKey();}}
  1. 字符串的方法和常量

(1) 字符串赋初值的三种方法

     string str = "";

     string str1 = string.Empty;

     string str2 = null;

(2)判断字符串是否为空

     Console.WriteLine(string.IsNullOrEmpty(string.Empty));

(3)字符串拘留池(驻留池)

     使用字符串的时候,如果字符串相同,那么所有变量都指向同一个地方

(4)字符串的比较方法

     1)比较两个字符串可以使用==或者Equals

     2)Equals的使用

            ->静态版本  string.Equals(object objA,object objB[,StringComparison com]);

            ->实例版本  str.Equals(object objA);

     3)一个静态的方法 Compare

            ->string.Compare(str1,str2)

                   str1>str2   1

                   str1=str2   0

                   str1<str2   -1

(5)全部转换为小写,或者大写  ToLower,ToUpper

     string str="assdfdSDS";

     str=str.ToUpper();

     Console.WriteLine(str); //全部变成大写输出

(6)去掉两端的空格和指定的元素

     string str=" 1234343 ";

     str=str.Trim();

     1)Trim(params char[] chs)

              string str = "  11154544dfddf4351111  ";

       str = str.Trim(' ', '1');

       Console.WriteLine(str);

      //输出结果:54544dfddf435

(7)字符串的合并和分隔

     1)合并

            string[] str = { "韩迎龙", "李潇絮", "小李飞刀" };

            string s = string.Join("|", str);

            Console.WriteLine(s);

            Console.ReadKey();

     2)分隔

            语法:

                   string[] <string>.Split(params char[] chs)

                   string[] <string>.Split(new char[] chs,StringSplitOptions.RemoveEmpty)

                   string s = "韩迎龙|23|男|女";

                   string[] str = s.Split('|');

                   Console.ReadKey();

(8)判断字符串的长度

     1)语法:<string>.Length;

     2)字符串可以像数组一样使用"下标"访问(索引)

            for(int i=0;i<str.Length;i++)

            {

                   Console.WriteLine(str[i]);

            }

(9)字符串查找

     1)判断是否包含 Contains

            ->语法:bool <string>.Contains(string str);

string str = "张三,韩迎龙,李四,王五,马六,杨七";if (str.Contains("韩迎龙")){Console.WriteLine("查找到了");}else{Console.WriteLine("没找到");}

            ->模拟Contains的实现(很局限)

static bool MyContains(string src, char cmp){bool isTrue = false;for (int i = 0; i < src.Length; i++){if (src[i] == cmp){isTrue = true;break;}}return isTrue;}

     2)IndexOf 寻找索引

            ->语法:

                   int <string>.IndexOf(char ch);

                   int <string>.IndexOf(char ch[,int startIndex]);

                   int <string>.IndexOf(string str[,int startIndex]);

                          string str = " 好好学习,天天向上";

                          int indeof = str.IndexOf('向');

            ->模拟MyIndex的算法(很局限)                   

static int MyIndex(string src, char cmp){int index = -1;for (int i = 0; i < src.Length; i++){if (src[i] == cmp){index = i;break;}}return index;}

     3)找出字符串中所有的"e"  

static void Main(string[] args){string str = "asfseeefsafserefeefsde";int index = -1;do{index = str.IndexOf('e', index + 1);if (index != -1){Console.WriteLine(index);}} while (index != -1);}    

(10)LastIndexOf 从右边往左边找

      string str = "32errrwefsfsd";

    int index = str.LastIndexOf('e'); //输出7

(11)子字符串

     1)语法:string <string>.SubString(开始的索引,字符串的长度);

                   string <string>.SubString(开始的索引);

     2)案例:

            string str = @"F:\heima\practice\string.exe";

       int start = str.IndexOf('\\');

       int length = str.IndexOf('\\', start + 1) - start;

       string s = str.Substring(start + 1, length - 1);

     3)跑马灯的效果         

string str = "北京欢迎您  ";while (true){Console.Clear();str = str.Substring(1) + str.Substring(0, 1);Console.WriteLine(str);System.Threading.Thread.Sleep(200);}

字符串的插入,移除,替换

              1)insert

                     string str = "时间就是一把杀猪刀啊";

            str = str.Insert(0, "世界上");

              2)remove

                     string str = "时间就是一把杀猪刀啊";

            str = str.Remove(0, 2);

              3)replace

                     string str = "时间就是一把杀猪刀啊";

            str = str.Replace("时间", "小贤");

       (13)判断结束和开始

              1)判断字符<string>串是否已某字符串开始或结束

              2)bool <string>.StartsWith(string str);

              3)bool <string>.EndsWith(string str);             

1)第一个案例string[] str = {"白天不懂夜的黑.mp3","梦想的力量.mp3","旧梦重弹.wma","我相信.mp3" };for (int i = 0; i < str.Length; i++){if (str[i].EndsWith(".mp3")){Console.WriteLine(str[i] + "下载成功");}else{Console.WriteLine(str[i] + "格式不正确");}}2)第二个案例static void Main(string[] args){string path1= "http://www.cnblogs.com";string path2 = "http://www.cnblogs.com/";string file = "旧梦重弹.mp3";string downfile = GetFileName(path1, file);Console.WriteLine(downfile);Console.ReadKey();}static string GetFileName(string path, string file){if (path.EndsWith("/")){return path + file;}else{return path + '/' + file;}}

(14)字符串的几个练习题

   1)接收用户输入的字符串,将其中的字符以相反的顺序输出"韩迎龙"->"龙迎韩"

static void Main(string[] args){string str = "韩迎龙";//第一种写法for (int i = str.Length-1; i  >=0; i--){Console.Write(str[i]  );}//第二种写法string strname = Exercise(str);Console.WriteLine(strname);}static string Exercise(string str){char[] chs = str.ToCharArray();  //变成char数组for (int i = 0; i < chs.Length / 2; i++){char temp = chs[i];chs[i] = chs[chs.Length - i - 1];chs[chs.Length - i - 1] = temp;}return new string(chs);}

   2)接受用户输入的一句英文,将其中的单词反序输出。"I Love you"->"I evol uoy"

static void Main(string[] args){string str = "I Love You";str = Exercise(str);Console.WriteLine(str);}static string Exercise(string str){string[] strs = str.Split(new char[] { ' ' }, StringSplitOptions.RemoveEmptyEntries);for (int i = 0; i < strs.Length; i++){strs[i] = Exercisetwo(strs[i]);}return string.Join(" ", strs);}static string Exercisetwo(string str){char[] chs = str.ToCharArray();  //变成char数组for (int i = 0; i < chs.Length / 2; i++){char temp = chs[i];chs[i] = chs[chs.Length - i - 1];chs[chs.Length - i - 1] = temp;}return new string(chs);}

    3)"2012年12月21日"从日期字符串中把年月日分别取出来,打印到控制台     

static void Main(string[] args){string str = "2012年10月03日";string[] strs = str.Split(new char[] { '年', '月', '日' });Console.WriteLine(string.Join(" ", strs));Console.ReadKey();}

   4)把csv文件中的联系人的姓名和电话显示出来,简单模拟

     注:首先将一个name.txt结构的文档放在项目的Bin的Debug目录下面,使其代码能够读到这个,里面的结构是"韩迎龙|男|23"

static void Main(string[] args){string[] lines = File.ReadAllLines("name.txt");for (int i = 0; i < lines.Length; i++){string[] strTemp = lines[i].Split(new char[] { '|' }, StringSplitOptions.RemoveEmptyEntries);Console.WriteLine("姓名:{0},年龄:{1}", strTemp[0], strTemp[2]);}}

转载于:https://www.cnblogs.com/hanyinglong/archive/2012/10/05/2711971.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/274578.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Git基础教程(必学)

大家好&#xff0c;我是若川。持续组织了近一年的源码共读活动&#xff0c;感兴趣的可以 加我微信 ruochuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含20余篇源码文章。历史面试系列。另外…

用户体验改善案例_优化用户体验案例研究的五种方法

用户体验改善案例重点 (Top highlight)I’ve had the opportunity to give several portfolio reviews, and I want to share some common themes I see and how you can improve them to put your best foot forward as you search for that new product design gig.我有机会发…

video from html5

掌握HTML5中的多媒体--视频(video) 除非你一直生活在一个偏远的岛屿上,过去一年左右的时间,你应该已经听说过HTML5的各式炒作。HTML5将重塑富Web应用的未来。 下面 Figure 1的示例展示了HTML5中video标签与传统的object标签的不同. Figure 1 1. <section> 2. <h…

我捡到宝了!2022版前端面试上岸手册,最新最细致!

大裁员背景下&#xff0c;没什么比辞职后找不到工作更扎心&#xff01;在行情好转前&#xff0c;前端程序员只能“猥琐发育”&#xff0c;不轻易跳槽&#xff0c;同时要修炼内功&#xff1a;对八股文、底层源码、重点项目等进行查缺补漏&#xff0c;静待行情好转抓住机会&#…

flo file_Flo菜单简介:可扩展的拇指友好型移动导航

flo fileWhen it comes to using my phone, I’m a thumb guy and I like using my phone held in one hand. Well, apparently 49% of us prefer it like this.说到使用手机&#xff0c;我是个拇指小伙&#xff0c;我喜欢用一只手握住手机。 好吧&#xff0c;显然我们当中有49…

超炫的iphone应用UI/UX设计赏析

日期&#xff1a;2012-10-5 来源&#xff1a;GBin1.com 要想成为一款成功的iOS应用&#xff0c;不单单是功能设计&#xff0c;还需要有超棒的用户界面和用户体验的完美设计。为了带给大家更多的设计灵感&#xff0c;今天我们分享另外一套来自dribbble的iOS应用UI和UX设计&…

Git实战进阶教程

大家好&#xff0c;我是若川。持续组织了近一年的源码共读活动&#xff0c;感兴趣的可以 加我微信 ruochuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含20余篇源码文章。历史面试系列。另外…

什么是设计模式_什么是设计?

什么是设计模式Imagine, you are out waiting for a taxi. You are about to miss your appointment. You wait for minutes but Good Lord! — there’s not a single taxi that can offer you a ride.想象一下&#xff0c;您正在外面等出租车。 您将错过约会。 您等待几分钟&…

hive实现not in

当前HIVE 不支持 not in 中包含查询子句的语法&#xff0c;形如如下的HQ语句是不被支持的: 查询在key字段在a表中&#xff0c;但不在b表中的数据 select a.key from a where key not in(select key from b) 该语句在hive中不支持 可以通过left outer join进行查询,&#xff0…

有哪些值得学习的大型 React 开源项目?

大家好&#xff0c;我是若川。持续组织了近一年的源码共读活动&#xff0c;感兴趣的可以 加我微信 ruochuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含20余篇源码文章。历史面试系列。另外…

成年人的样子是什么样子_不只是看样子

成年人的样子是什么样子As a branding, packaging, and digital product designer, both at Input Logic and as a freelancer, I work with clients across a wide array of industries, and am responsible for simultaneously getting to the heart of what each client wan…

HDU 3664 Permutation Counting(DP)

题目链接 弱爆啦&#xff0c;组合弱爆了&#xff0c;反正是没想出来怎么搞这个题&#xff0c;其实这个公式不难推啊&#xff0c;反正就是没推出来。今天队内赛&#xff0c;实在是没办法了&#xff0c;暴力写了个DFS&#xff0c;先把10以内的打出表来&#xff0c;发现类似杨辉三…

如何在工作中打造影响力,带动同事?

大家好&#xff0c;我是若川。持续组织了近一年的源码共读活动&#xff0c;感兴趣的可以 加我微信 ruochuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含20余篇源码文章。历史面试系列。另外…

谷歌maps菜单语言设置_Google Maps:拯救未来之路— UX案例研究

谷歌maps菜单语言设置I have a lousy sense of direction, so Google Maps has always been my right-hand app. On a whim last year, I decided to skip the beach and sunburn and head to Budapest for spring break. That’s when Google Maps became my best friend.我的…

this和prototype

this出现在构造函数中&#xff0c;更多的是表示一种特有的属性&#xff1b; prototype主要用于拓展函数的属性&#xff0c;方法。 在函数类实例化的时候&#xff0c;this的属性需要复制相应的副本&#xff0c;prototype不用。 function Blog(title,content) { this.titletitle;…

1万小时后,我从外包走进了字节跳动,现在出了一本书,文末送书!

谨以此书献给相信“努力有用”的你by 大史不说话《 前端跨界开发指南&#xff1a;JavaScript工具库原理解析与实战》先做个自我介绍我是大史不说话&#xff0c;是一名前端工程师&#xff0c;一个相信“努力有用”的、不太聪明的、行动力还可以的程序员。曾经因为一篇《10000小时…

视觉设计师跟平面设计_使设计具有视觉吸引力

视觉设计师跟平面设计Interaction Design is very gratifying.交互设计非常令人满意。 From fast critical thinking to extracting ideas in tangible forms within the team is sure fun and challenging.从快速的批判性思维到在团队内部以有形的形式提炼想法&#xff0c;无…

ExtJs4 笔记 Ext.tab.Panel 选项卡

本篇讲解选项卡控件。 一、基本选项卡 首先我们来定义一个基本的选项卡控件&#xff0c;其中每个Tab各有不同&#xff0c;Tab的正文内容可以有三种方式获取&#xff1a; 1.基本方式:通过定义html和items的方式。 2.读取其他html的信息:通过设置contentEl就可以获取其他html的信…

一直刷不动算法题,怀疑人生?试试五毒掌法!

大家好&#xff0c;我是若川。持续组织了近一年的源码共读活动&#xff0c;感兴趣的可以 加我微信 ruochuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含20余篇源码文章。历史面试系列。另外…

还在用开发者工具上传小程序? 快来试试 miniprogram-ci 提效摸鱼

1. 前言大家好&#xff0c;我是若川。持续组织了近一年的源码共读活动&#xff0c;感兴趣的可以 加我微信 ruochuan12 参与&#xff0c;每周大家一起学习200行左右的源码&#xff0c;共同进步。同时极力推荐订阅我写的《学习源码整体架构系列》 包含包含jQuery、underscore、lo…