1.将用户输入的英语句子拆分成单词输出(单词间以空格分隔)。C#实现!

2024-11-09 09:45:26
推荐回答(5个)
回答1:

用正则吧 。可以分得更细一些。不仅仅是根据空格。还能根据标点符号啊之类的。呵呵 。参考一下下面的代码吧:
把 “Hello,How Are You!”拆分成4个单词。

static void Main(string[] args) {
string str = "Hello,How Are You!";
System.Text.RegularExpressions.Regex reg = new System.Text.RegularExpressions.Regex(@"\b\w+\b");
System.Text.RegularExpressions.MatchCollection mc = reg.Matches(str);
foreach (System.Text.RegularExpressions.Match m in mc) {
Console.WriteLine(m.Value );
}
}

回答2:

using System;

public class SplitTest {
public static void Main() {

string words = "This is a list of words with a bit of punctuation.";

string [] split = words.Split(new Char [] {' '});

foreach (string s in split) {

if (s.Trim() != "")
Console.WriteLine(s);
}
}
}

回答3:

用split(' ')方将句子给截成单词

回答4:

先将单词存入数组中.
然后使用 foreach 循环读出. 读书时加空格.

回答5:

用下substring。参考资料给出了。楼主该复习下基础了。