

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
C# program to remove all duplicates words from a given sentence
Set a string with duplicate words.
string str = "One Two Three One";
Above, you can see the word “One” comes twice.
To remove dulicate words, you can try to run the following code in C# −
Example
using System; using System.Linq; public class Program { public static void Main() { string str = "One Two Three One"; string[] arr = str.Split(' '); Console.WriteLine(str); var a = from k in arr orderby k select k; Console.WriteLine("After removing duplicate words..."); foreach(string res in a.Distinct()) { Console.Write(" " + res.ToLower()); } Console.ReadLine(); } }
Output
One Two Three One After removing duplicate words... one three two
- Related Questions & Answers
- Java program to remove all duplicates words from a given sentence
- Python program to remove all duplicates word from a given sentence.
- Remove all duplicates from a given string in C#
- Remove all duplicates from a given string in Python
- Python program to remove Duplicates elements from a List?
- Java program to remove duplicates elements from a List
- Python program to count words in a sentence
- Write a program in C++ to remove duplicates from a given array of prime numbers
- Reverse all the words of sentence JavaScript
- Python program to sort Palindrome Words in a Sentence
- Java Program to Remove Duplicates from an Array List
- Count words in a sentence in Python program
- Java program to remove all the white spaces from a given string
- C++ program to convert all digits from the given range into words
- Print all words occurring in a sentence exactly K times
Advertisements