我需要有关正则表达式模式的帮助。
我有这个字符串:
test = "/*testing 1*/Name: /*Testing 2*/ My Name"
我需要/**contents **/
从字符串中删除每个。
我正在使用正则表达式进行过滤,如下代码:
Regex rx = new Regex(@"/\*[^>]+\*/");
Template = rx.Replace(Template, match => { return String.Empty; });
但我得到的结果只是"My Name",预期结果是"Name: My Name"。