I need to simply insert character "/" in the 3rd position of string.
ie "EURUSD" becomes "EUR/USD".
I'm using some program GUI to do this, it accepts a Regex Pattern and a Replacement.
I know this must be super simple but I can't seem to find a simple answer.
^(.{3})with\1/?$1/, rather?