<small id='0hP7o'></small><noframes id='0hP7o'>

    <i id='0hP7o'><tr id='0hP7o'><dt id='0hP7o'><q id='0hP7o'><span id='0hP7o'><b id='0hP7o'><form id='0hP7o'><ins id='0hP7o'></ins><ul id='0hP7o'></ul><sub id='0hP7o'></sub></form><legend id='0hP7o'></legend><bdo id='0hP7o'><pre id='0hP7o'><center id='0hP7o'></center></pre></bdo></b><th id='0hP7o'></th></span></q></dt></tr></i><div id='0hP7o'><tfoot id='0hP7o'></tfoot><dl id='0hP7o'><fieldset id='0hP7o'></fieldset></dl></div>
    <legend id='0hP7o'><style id='0hP7o'><dir id='0hP7o'><q id='0hP7o'></q></dir></style></legend>
    <tfoot id='0hP7o'></tfoot>

      <bdo id='0hP7o'></bdo><ul id='0hP7o'></ul>
    1. 从字符串中删除重复的单词

      时间:2023-08-28
    2. <i id='hBQrB'><tr id='hBQrB'><dt id='hBQrB'><q id='hBQrB'><span id='hBQrB'><b id='hBQrB'><form id='hBQrB'><ins id='hBQrB'></ins><ul id='hBQrB'></ul><sub id='hBQrB'></sub></form><legend id='hBQrB'></legend><bdo id='hBQrB'><pre id='hBQrB'><center id='hBQrB'></center></pre></bdo></b><th id='hBQrB'></th></span></q></dt></tr></i><div id='hBQrB'><tfoot id='hBQrB'></tfoot><dl id='hBQrB'><fieldset id='hBQrB'></fieldset></dl></div>
        <legend id='hBQrB'><style id='hBQrB'><dir id='hBQrB'><q id='hBQrB'></q></dir></style></legend>
          <bdo id='hBQrB'></bdo><ul id='hBQrB'></ul>

        • <tfoot id='hBQrB'></tfoot>

          <small id='hBQrB'></small><noframes id='hBQrB'>

              <tbody id='hBQrB'></tbody>

              • 本文介绍了从字符串中删除重复的单词的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                问题描述

                我需要从字符串中删除重复的单词.我该怎么做呢?

                I need to remove duplicate words from a string. How would I go about doing that?

                推荐答案

                如果要去掉重复"这个词:

                If you want to remove the word "duplicates":

                string duplicatesRemoved = RTBstring.Replace("duplicates", "");
                

                ;)

                删除重复单词的简单(且过于简单)方法是拆分空格字符并使用 LINQ 的 Distinct() 方法:

                The easy (and overly simplistic) way to remove duplicate words is to split on the space character and use LINQ's Distinct() method:

                string duplicatesRemoved = string.Join(" ", RTBstring.Split(' ').Distinct());
                

                但是,如果您使用的是实际句子(即标点符号会破坏它),这将不会有用.如果没有明确定义重复的含义以及预期的输入是什么,就很难给出准确的答案.

                But this won't work in a useful way if you're working with actual sentences (i.e. punctuation will break it). Without a clear definition of what you mean by duplicates and what the expected input is, it's hard to give an accurate answer.

                这篇关于从字符串中删除重复的单词的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                上一篇:如何防止重复项目listView C# 下一篇:C# - 合并两个重复行的数据表

                相关文章

                最新文章

                <i id='DzeRO'><tr id='DzeRO'><dt id='DzeRO'><q id='DzeRO'><span id='DzeRO'><b id='DzeRO'><form id='DzeRO'><ins id='DzeRO'></ins><ul id='DzeRO'></ul><sub id='DzeRO'></sub></form><legend id='DzeRO'></legend><bdo id='DzeRO'><pre id='DzeRO'><center id='DzeRO'></center></pre></bdo></b><th id='DzeRO'></th></span></q></dt></tr></i><div id='DzeRO'><tfoot id='DzeRO'></tfoot><dl id='DzeRO'><fieldset id='DzeRO'></fieldset></dl></div>

                <small id='DzeRO'></small><noframes id='DzeRO'>

              • <tfoot id='DzeRO'></tfoot>

                    • <bdo id='DzeRO'></bdo><ul id='DzeRO'></ul>
                  1. <legend id='DzeRO'><style id='DzeRO'><dir id='DzeRO'><q id='DzeRO'></q></dir></style></legend>