c#中特定格式的正则表达式模式

本文关键字:正则表达式 模式 格式 定格 | 更新日期: 2023-09-27 18:08:50

我有一个字符串像Test (123) Test &需要从字符串中移除(123)

请帮我得到确切的正则表达式模式,以取代?

Input : Test(123)Test
Output: Test Test

谢谢Gunasekaran Sambandhan

c#中特定格式的正则表达式模式

尝试如下…它会帮助你……

代码:

string input = "Test(123)Test";
string regex = "(''(.*''))";
string sOutput = Regex.Replace(input, regex, " ");
Console.WriteLine(sOutput);

输出:

Test Test

更新代码:

string input = "(hi) (91) Professional Investment Services Pty Ltd (hi) (91)";
Regex regex = new Regex(string.Format("''{0}.''d+''{1}", '(', ')'));
Console.WriteLine(regex.Replace(input, string.Empty));
输出:

(hi) Professional Investment Services Pty Ltd (hi)