字符串截取
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了字符串截取相关的知识,希望对你有一定的参考价值。
现有字符串
string a="a,b,c,d"
以 , 为分隔截取 (注意最后一个后面没有 ,)
分别取出 a[0] a[1] a[2] a[3]
这个该怎么写
1.原字符串为string a="a,b,c,d"
2.截取字符串 String[] str=a.Spilt(',');//此处截取后的字符串会成为4个独立的字符串,所以定义了一个字符串数组来接收
3.for(int i=0;i<str.Length;i++)//这里用循环来输出字符串数组中存的截取后的4个字符串
Console.WtriteLine(str[i]);
结果就是a
b
c
d
这三步连起来写,不要加我的中文注释,应该会运行正确,你可以试试,有什么问题可以再问 参考技术A #include <iostream>
#include <string>
#include <sstream>
using namespace std;
int main()
string word, str = "hello,baby,today,is,a,nice,day";
for (int i = 0; i < str.size(); ++i)
if (',' == str[i])
str[i] = ' ';
istringstream stream(str);
while (stream >> word)
cout << word << endl;
return 0;
参考技术B string str="a,b,c,d";
string[] a=str.split(',');
就可以分别取出 a[0]、a[1]、a[2]、a[3] 参考技术C string a = NewReader["ExportReason"].ToString();
char[] sp = ("-").ToCharArray();
string[] b = a.Split(sp);
for (int i = 0; i < this.cblReason.Items.Count; i++)
for (int j = 0; j < b.Length; j++)
if (this.cblReason.Items[i].Value == b[j].ToString())
this.cblReason.Items[i].Selected = true;
//////////////////////////////////////////
string save_cblJL = "";
string Act = "";
for (int i = 0; i < this.CheckBoxList1.Items.Count; i++)
if (this.CheckBoxList1.Items[i].Selected == true)
save_cblJL += this.CheckBoxList1.Items[i].Value + ",";
Act = save_cblJL.Substring(0, save_cblJL.Length - 1);
参考技术D string a = "a,b,c,d";
string[] arr1 = a.Split(',');
for(int i = 0; i < arr1.Length; i++)
// 循环数组取值
iOS NSString 截取字符串(根据索引截取)
2. substringToIndex:7:截取从0 索引到指定索引(7)长度的字符串 (从0到7)
3. substringFromIndex:9:截取从指定索引(9)到末尾长度的字符串 (从9到0)
4. substringWithRange:NSMakeRange(4,2):截取从指定索引(4)到指定(2)长度的字符串 (从4开始后的2个)
5. isEqualToString:@"p://www":比较字符串包含关系,区分大小写
6. stringWithFormat:格式化字符串。
NSString *a = @"1.2.30";
int b= [[a substringWithRange:NSMakeRange(4,2)] intValue];
NSLog(@"a:%@ \n",a );
NSLog(@"b:%d",b );
Output : 2011-07-05 11:49:08.170 Q[4005:207] a:1.2.30
2011-07-05 11:49:08.172 Q[4005:207] b:30
解析如下:substringWithRange: 专门截取字符串的一块
NSMakeRange(4,2) 从第4个字符开端截取,长度为2个字符,(字符串都是从第0个字符开端数的哦~!)
二 。 字符串截取到第n位 (substringToIndex: n)(第n 位不算再内)
NSString *a = @"i like long dress";
NSString *b = [a substringToIndex:4];
NSLog(@" b: %@",b);
2011-07-11 18:12:40.119 Q[6321:207] b: i li
三 。字符串从第n 位开端截取,直到最后 (substringFromIndex:n)(包含第 n 位)
NSString *a = @"i like long dress";
NSString *b = [a substringFromIndex:4];
NSLog(@"b: %@",b);
2011-07-11 18:15:08.125 Q[6366:207] b: ke long dress
以上是关于字符串截取的主要内容,如果未能解决你的问题,请参考以下文章