Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个字符串,它可以包含 abc+123def 或 abc-123def 或仅 abc123def 之类的字符。只提取数字和符号的正则表达式是什么?例如 +123 或 -123 或 123 ...?
这是我认为您正在寻找的正则表达式。
"[-\+]?\d+"
小心,您可能必须转义'密钥
'
([+-]?[0-9]+)
[+-]?说给我零个或一个符号 [0-9]+给我至少1个数字
[+-]?
[0-9]+
如果数字总是紧跟在符号后面:[+-]?\d+。
[+-]?\d+
使用这个正则表达式[+-]?\d+