是否可以这样做:
"hello, I have 65 dollars".replaceFirst("65", "$")
目前的结果是
scala> "hello, I have 65 dollars".replaceFirst("dollars", "$")
java.lang.StringIndexOutOfBoundsException: String index out of range: 1
....
scala 2.10 中的预期结果:
hello, I have 65 $
问题出在符号$
上,我需要将其处理为字符串而不是正则表达式。我试图把它放进去"""
,或者raw""
没有任何帮助