追着嘟嘟学c#系列基础第十篇-----c#字符串【蓝鸥出品】

字符串的本质



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

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值