繁体   English   中英

如何在c#中获取字符串的所有单词?

[英]How to get all words of a string in c#?

我在一个字符串中有一个段落,我想得到该段落中的所有单词。

我的问题是我不希望后缀的单词以标点符号结尾,例如(',','。',''',''',';',':','!','? ')和/ n / t等

我也不想要像world's那样只有回归世界的话语。

he said. "My dog's bone, toy, are missing!"的例子中he said. "My dog's bone, toy, are missing!" he said. "My dog's bone, toy, are missing!"

名单应该是: he said my dog bone toy are missing

根据Shan的回答 ,我会考虑这样的出发点:

MatchCollection matches = Regex.Match(input, @"\b[\w']*\b");

为什么包括'角色? 因为这会阻止像“我们”这样的单词被分成两个单词。 捕获后,您可以自己手动删除后缀(否则,您无法识别re不是单词而忽略它)。

所以:

static string[] GetWords(string input)
{
    MatchCollection matches = Regex.Matches(input, @"\b[\w']*\b");

    var words = from m in matches.Cast<Match>()
                where !string.IsNullOrEmpty(m.Value)
                select TrimSuffix(m.Value);

    return words.ToArray();
}

static string TrimSuffix(string word)
{
    int apostropheLocation = word.IndexOf('\'');
    if (apostropheLocation != -1)
    {
        word = word.Substring(0, apostropheLocation);
    }

    return word;
}

输入示例:

he said. "My dog's bone, toy, are missing!" What're you doing tonight, by the way?

示例输出:

[he, said, My, dog, bone, toy, are, missing, What, you, doing, tonight, by, the, way]

这种方法的一个限制是它不能很好地处理首字母缩略词; 例如,“YMCA”将被视为四个单词。 我认为也可以通过包括来处理. 作为一个字符在一个单词中匹配,然后在它之后完全停止时将其剥离(即通过检查它是单词中的唯一句点以及最后一个字符)。

希望这对你有所帮助:

        string[] separators = new string[] {",", ".", "!", "\'", " ", "\'s"};
        string text = "My dog's bone, toy, are missing!";

        foreach (string word in text.Split(separators, StringSplitOptions.RemoveEmptyEntries))
            Console.WriteLine(word);

请参阅正则表达式单词边界表达式计算richtextbox中所有单词的最有效方法是什么? 故事的道德是有很多方法来解决问题,但正则表达式可能是简单的方法。

在空格上拆分,修剪结果字符串上不是字母的任何内容。

这是一个循环替换方法......不是很快,但解决它的方法......

string result = "string to cut ' stuff. ! out of";

".',!@".ToCharArray().ToList().ForEach(a => result = result.Replace(a.ToString(),""));

这假设您要将其放回原始字符串中,而不是新字符串或列表。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM