Simple regular expression question. Your answer will help me wrap my head around future expressions…
Say I have this string “Send today @ 1 USD to 13.6512 MXN” and I want to target USD and MXN. Is there one regular expression that will return both values?
I don’t have a way to check it myself right now, but something like /[A-Z]{3}/ should work as both are 3 characters long.
Edit: Removed ^ and $ like mason81 said.