scalaを使用して、文字列内の単語の完全一致を置き換えようとしています
"\\bhello\\b".r.replaceAllIn("hello I am helloclass with hello.method","xxx")
output >> xxx I am helloclass with xxx.method
私が欲しいのは、単語がhelloclassとhello.methodのhelloではなく、正確にhelloである場合に置き換えることです
xxx I am helloclass with hello.method
入力文字列が
"hello.method in helloclass says hello"
"hello.method says hello from helloclass"
"hello.method in helloclass says Hello and hello"
出力は
"hello.method in helloclass says xxx"
"hello.method says xxx from helloclass"
"hello.method in helloclass says Hello and xxx"
どうやってやるの?