标签: c# regex
我使用Regex格式编写代码来搜索前面有符号的数字:+, - 或类似以下数字的空格:
templateUrl: 'static/app/app.component.html'
我正在使用这种格式,但我希望用+ -
(+02.00) (-03.50) ( 00.00)
请帮助,谢谢。
答案 0 :(得分:1)
您可以使用:
[+\s-]\d{2}\.\d{2}
\s
[...]