只是想知道,例如,如果我有字符串:
Hello#World#Test
如何删除#,然后在三个单独的字符串中包含Hello
,World
和Test
,例如:
String1
和String2
以及String3
答案 0 :(得分:46)
你可以让它们在一个字符串数组中做一些像这样简单的事情:
string[] s = "Hello#World".Split('#');
s[0]
包含“Hello”,s[1]
包含“World”
有关拆分的更多信息,请参阅此处:http://msdn.microsoft.com/en-us/library/b873y76a.aspx
答案 1 :(得分:4)
String.Split("#".ToCharArray())
将返回包含两个元素的string[]
。
Element0将为“Hello”,而Element1将为“World”
答案 2 :(得分:1)
这是一种方式
"hello#world".Split('#');