How do I solve the symbols code coach ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How do I solve the symbols code coach ?

Here's my code : using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Text.RegularExpressions; namespace SoloLearn { class Program { static void Main(string[] args) { string input = Console.ReadLine(); string result = Regex.Replace(input, "[^a-zA-Z0-9_]+"," "); Console.Write(result.Replace(" ","")); } } }

23rd Apr 2020, 4:07 PM
Joseph Oritseweyinmi
Joseph Oritseweyinmi - avatar
0 Answers