I want to convert "me" to "you", without touching words that have "me" in them, i.e.
"awesome melon me" -> "awesome melon you"
So far I got the negative look ahead pattern:
str.replace(/me(?![a-zA-Z])/g, 'you')
so I get
"awesome melon me" -> "awesoyou melon you"
Tried some answers already, couldn't find someone that matches this request, thanks in advance for the help