I have this regex:
([A-Za-z])\'([A-Za-z])
This works, is for example for words like : d'utilisateur (in fr)
This regex select the d'u but I just want if the condition is met, select only '.
I don't know if this is posible and how.
This is for masive replace in VS Code in plain text.
1 Answer 1
In Visual Studio Code, you may still use your ([A-Za-z])'([A-Za-z]) and replace with 1ドル2ドル to remove this apostrophe. 
However, this won't work for consecutive matches, and you will have to use a lookahead instead of the second group. So, to remove the apostrophes in between letters use
Find What: ([A-Za-z])'(?=[A-Za-z])
Replace With: 1ドル2ドル
If you need to replace with some other text, replace with 1ドル<MY_NEW_TEXT>. 
Alternatively, you may use
\b'\b
However, this pattern will also match ' in between digits and _.