博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#字符串类的典型用法
阅读量:5221 次
发布时间:2019-06-14

本文共 1913 字,大约阅读时间需要 6 分钟。

using System;namespace e1_4_11{    class Program    {        static void Main(string[] args)        {            //字符串搜索            string s = "ABC科学";            int j = s.IndexOf("科");            Console.WriteLine("{0}", j);            string s1 = "abc";            string s2 = "abc";            string s3 = "相同";            //判断连个字符串是否相同            if (s1 == s2)                Console.WriteLine("{0}", s3);            else            {                s3 = "不相同";                Console.WriteLine("{0}", s3);            }            //判断字符串是否为空            string s4 = "";            string s5 = "不空";            if (s4.Length == 0)            {                s5 = "空";                Console.WriteLine("{0}", s5);            }            string s6 = "取子字符串";            //从索引为2开始取2个字符,sb="字符",s内容不变            string sb = s6.Substring(2, 2); //sb="字符"            char sb1 = s6[0];            Console.WriteLine(sb);            Console.WriteLine(sb1);            //删除字符串            string sb2 = s6.Remove(0, 2); //从索引为0开始删除2个字符,sb="字符串",s6内容不变            Console.WriteLine(sb2);            //插入字符串            string s7 = "计算机科学";            string s8 = s7.Insert(3, "软件");            Console.WriteLine(s8);            //替换字符串            string s9 = s7.Replace("计算机", "软件");            Console.WriteLine(s9);            //将字符串转换为字符数组            char[] s10 = s7.ToCharArray(0, s7.Length);            Console.WriteLine(s10);            //转换为字符串            int i = 9;            string s11 = i.ToString();            Console.WriteLine(s11);            //大小写转换            string st = "AaBbCc";            string s12 = st.ToLower();            string s13 = st.ToUpper();            Console.WriteLine(s12);            Console.WriteLine(s13);            //删除所有空格            string sk = "A   bc";            Console.WriteLine(sk.Trim());        }    }}

转载于:https://www.cnblogs.com/wwj9413/archive/2012/09/12/2781214.html

你可能感兴趣的文章
bzoj 2007: [Noi2010]海拔【最小割+dijskstra】
查看>>
BZOJ 1001--[BeiJing2006]狼抓兔子(最短路&对偶图)
查看>>
C# Dynamic通用反序列化Json类型并遍历属性比较
查看>>
128 Longest Consecutive Sequence 一个无序整数数组中找到最长连续序列
查看>>
定制jackson的自定义序列化(null值的处理)
查看>>
auth模块
查看>>
javascript keycode大全
查看>>
前台freemark获取后台的值
查看>>
log4j.properties的作用
查看>>
游戏偶感
查看>>
Leetcode: Unique Binary Search Trees II
查看>>
C++ FFLIB 之FFDB: 使用 Mysql&Sqlite 实现CRUD
查看>>
Spring-hibernate整合
查看>>
c++ map
查看>>
exit和return的区别
查看>>
js += 含义(小知识)
查看>>
B2321 [BeiJing2011集训]星器 数学&&物理
查看>>
201571030319 四则运算
查看>>
RestTemplate 调用本地服务 connection refused
查看>>
.NET方向高级开发人员面试时应该事先考虑的问题
查看>>