什么是 Java 中的正则表达式,用于在格式如下的字符串中捕获 @ 符号后的文本片段:
@+300 regex returns +300
@300 regex that should returns 300
@300.00 regex that should return 300.00
123123@300.00 should not return anything
@300.00@ should not return anything
@300.00.00 should not return anything
有点像 Twitter 中提到的用户名,但带有十进制数字(正数和负数)。