I have string like this:
Hello &f are &f you &f here?
And I want to replace only last &f with "" (by last I mean third one, which is near "here". I tried something like this:
"Hello &f are &f you &f here?".replaceAll(".&f", "")
But it doesn't work, so could someone help me?