标签: java regex regex101
我有一个字符串:sort25-04-2018_17-47-06-pdf_newmfsortname+test_noEmail+15246675824@sut.filler.com
sort25-04-2018_17-47-06-pdf_newmfsortname+test_noEmail+15246675824@sut.filler.com
并需要替换符号“。”和“@”由“_”但不能创建匹配这些sybmols的正确表达式,我试过^[\@\.]+$和/^[\@.]+$/所有这些都不起作用。 请尽快发送帮助。 提前谢谢!
^[\@\.]+$
/^[\@.]+$/