Archived
1
0

optimise files

This commit is contained in:
2025-11-25 20:14:10 +08:00
Unverified
parent bb4a37acc4
commit 4e148364a9
171 changed files with 6555 additions and 0 deletions

16
CS/15_8/Program.cs Normal file
View File

@@ -0,0 +1,16 @@
using System;
using System.Text.RegularExpressions;
namespace _15_8
{
internal class Program
{
static void Main(string[] args)
{
string strIn = @"~@ How are you doing? Finethanks";
string result = Regex.Replace(strIn, @"[^\w\. ?,]", "");
Console.WriteLine(strIn);
Console.WriteLine(result);
}
}
}