आइए मान लें कि हमें नीचे की स्ट्रिंग से लाइन ब्रेक, स्पेस और टैब स्पेस को खत्म करना है।
समाप्त करें.jpg
उदाहरण
हम इसे करने के लिए स्ट्रिंग की रिप्लेसमेंट () एक्सटेंशन विधि का उपयोग कर सकते हैं।
using System; namespace DemoApplication { class Program { static void Main(string[] args) { string testString = "Hello \n\r beautiful \n\t world"; string replacedValue = testString.Replace("\n\r", "_").Replace("\n\t", "_"); Console.WriteLine(replacedValue); Console.ReadLine(); } } }
आउटपुट
उपरोक्त कोड का आउटपुट है
Hello _ beautiful _ world
उदाहरण
हम उसी ऑपरेशन को करने के लिए रेगेक्स का भी उपयोग कर सकते हैं। Regex System.Text.RegularExpressions नाम स्थान में उपलब्ध है।
using System; using System.Text.RegularExpressions; namespace DemoApplication { class Program { static void Main(string[] args) { string testString = "Hello \n\r beautiful \n\t world"; string replacedValue = Regex.Replace(testString, @"\n\r|\n\t", "_"); Console.WriteLine(replacedValue); Console.ReadLine(); } } }
आउटपुट
उपरोक्त कोड का आउटपुट है
Hello _ beautiful _ world