在C#中,可以使用正則表達式來去掉特殊字符。下面是一個示例代碼:
using System;
using System.Text.RegularExpressions;
class Program
{
static void Main()
{
string input = "Hello, World! This is a test string.";
// 使用正則表達式去掉特殊字符
string output = Regex.Replace(input, "[^a-zA-Z0-9 ]", "");
Console.WriteLine(output);
}
}
在上面的代碼中,我們使用Regex.Replace()
方法來替換輸入字符串中的除了字母、數字和空格之外的所有特殊字符。最終輸出的字符串就是去掉特殊字符后的結果。