I have this regular expression:
'(1|2|6|8|13|14|17|20|42|53)'
This will match the numbers listed. Helpful being that I only want those specific numbers.
However, I want to do a replace on these based on the number. As an example, '1'
would become 'STL'
while '17'
would become 'PHX'
Is there a way I can do this in a single Regular Expression? If not, how might I do this in Notepad++ without doing 10 different search and replace operations?