I need to replace a word in a string looking like “duh duh something else duh”. I only need to replace the second “duh”, but the first and the last ones need to stay untouched, so replace() and replaceFirst() don’t work. Is there a method like replaceFirst(String regex, String replacement, int offset) that would replace the first occurrence of replacement starting from offset, or maybe you’d recommend some other way of solving this?
Thanks!
I need to replace a word in a string looking like duh duh something
Share
What about something like this:
just 1 line of code … not a whole method.