从字符串中读取单词
本文关键字:单词 读取 字符串 | 更新日期: 2023-09-27 18:05:28
我有一个包含单词的字符串。例子:字符串s = " asd qwert 123 ";如何在c#中分别使用循环从字符串中读取asd qwert和123 ?提前致谢
如果您使用Split
方法,您可以很容易地做到这一点:
foreach(var str in s.Split(' '))
{
// str would be one of asd, qwert and 123
// since splitting on whitespace gives you an array
// with the words in the string s, which are separated one
// from the other with a whitespace between them.
}
请看这里