码迷,mamicode.com
首页 > Windows程序 > 详细

C# Substring的用法

时间:2014-11-24 11:43:12      阅读:202      评论:0      收藏:0      [点我收藏+]

标签:style   os   sp   on   bs   size   nbsp   方法   字符串   

方法1   Substring(Int32)       从此实例检索子字符串。 子字符串在指定的字符位置开始并一直到该字符串的末尾。

方法2   Substring(Int32, Int32)   从此实例检索子字符串。 子字符串从指定的字符位置开始且具有指定的长度。

参数一:起始位置(从0开始)

参数二:指定长度

用法:string变量名.Substring(参数一, 参数二);

 

举例:

string s = "hello world";

string ss;

 

例子1 //从指定位置开始到结尾的字符串(0位开始)

int i=1;

ss = s.Substring(i);

ss = "ello world"

例子2 //从指定位置开始取固定长度的字符串

int i=1;

ss = s.Substring(i,3);

ss = "ell"

例子3 //返回左边的i个字符

int i=5;

ss = s.Substring(0,i)

ss = "hello"

例子4 //返回右边的i个字符

int i=5;

ss = s.Substring(s.Length-i,i);

ss = "world"

例子5 //返回两个特定字符之间的字符串

int IndexofA = s.IndexOf(‘e‘); //字符串的话总以第一位为指定位置

int IndexofB = s.IndexOf(‘r‘);

ss = s.Substring(IndexofA + 1, IndexofB - IndexofA -1);

ss = "llo wo"

C# Substring的用法

标签:style   os   sp   on   bs   size   nbsp   方法   字符串   

原文地址:http://www.cnblogs.com/lht921027/p/4118188.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!