C怎么把字符串,以空格为单位分别存入数组,字串作为

2020-12-02 21:53:16 字数 2868 阅读 7736

1楼:匿名用户

用string.split语法,,用“ ”空格来分割,这样应该就自动把它按照空格分别装入数组了

2楼:匿名用户

string str = "./xcode.configenc.pl -u32pid 6410 -u32encodertype 0 -u32codingmode 2

-instance 4";(你要用的字符串)

string ss = str.split(' ');(分隔出来的数组)

3楼:匿名用户

用sipte(' ')转换成数组啊!不知道单词有没有打错,就是这个方法就可以了。

以空格字符串作为分隔字符串,将如下字符串拆分成数组

4楼:芹菜and菠菜

刚才没注意看,原来是有多个空格的,那你就用replaceaall()先把一个或多个空格替换成英文输入法的逗号",",然后再用split()根据逗号","来分割数组就好了

c#中怎样将一个字符串数组以|形式分割输出,求**

5楼:匿名用户

|string str = ;

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

console.readkey();

c#里面怎么把一个字符串逐个放入一个数组中?

6楼:匿名用户

system.string自带有tochararray方法,可以直接将字符串转为char数组,也就是例如

string str = "hello, world";

char chars = str.tochararray();

7楼:匿名用户

你的意思是 比如 hello这个字符串?数组是h,e,l,l,o?

那就可以用string.mid(i,1)函数。

8楼:匿名用户

用for 或while循环语句 逐个对数组元素赋值

9楼:匿名用户

string s="abcde";

char t[100];

int i;

for(i=0;s.length;i++)t[i]=s[i];

t[i]=0;

10楼:

string s="abcde";

char array = new char[s.length];

for(int i=0;i < s.length; i++)array[i]=s[i];

array[i] = '\0';

或者string str= " ,.:";

char array= str.tochararray();参见:

http://msdn.microsoft.***/zh-**/library/ezftk57x.aspx

急求c#分隔符问题:我想把一个字符串以空格为分割符分割成数组,但不要返回全是空格的数组。

11楼:久久

string arr=regex.split(strvalue, @"\s+"),这个是对的。。。 返回的是没有空格的数组。

12楼:吕建鸥

数组循环一遍

判断一下把是空格的删除

13楼:

1.不要用空格作为分隔符,可用“|” or ","等2.string strs=this.textbox1.text.split('|');

listlist=new list();

if(strs!=null&&strs.length>0)}}

c#中如何把一个字符串里面的各个元素倒过来,然后保存的另一个字符串中

14楼:dy丶淡语

static void main(string args)char newstr = new char[str.length];

//拆分单子字符存储到数组

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

string s = null;

//倒着添加单个字符到一个新的字符串

for (int i = str.length-1; i >= 0; i--)

return s;}

15楼:匿名用户

倒着for循环,依次输出每个char…

能不能把一个字符串以其中的空格为分隔符分成一个字符串数组,有没有直接实现的语句

16楼:jay丶chou丶

什么语言?

java的。

str.split(" ");

这个得到的就是以空格为分隔符分成一个字符串数组。

17楼:匿名用户

using system;

publicclass splittest );

foreach (string s in split) }}// the example displays the following output to the console:// this// is// a// list// of// words// with// a// bit// of// punctuation// and// a// tab// character

C怎么分割字符串为数组,c#如何把字符串数组分割成一个一个值

1楼 匿名用户 简单!声明string的一个数组 string str 然后str 需要切割的字符串 split 空格 这就是按空格切割,你也可以自己自定义。明白? 2楼 匿名用户 string s 1 2 3 4 5 string p s split 3楼 匿名用户 string有一个成员函数sp...