17 lines
391 B
C#
17 lines
391 B
C#
using System;
|
||
using System.Text.RegularExpressions;
|
||
|
||
namespace _15_8
|
||
{
|
||
internal class Program
|
||
{
|
||
static void Main(string[] args)
|
||
{
|
||
string strIn = @"~@ How are you doing? Fine,thanks!";
|
||
string result = Regex.Replace(strIn, @"[^\w\. ?,]", "");
|
||
Console.WriteLine(strIn);
|
||
Console.WriteLine(result);
|
||
}
|
||
}
|
||
}
|