Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有这个正则表达式:
'(1|2|6|8|13|14|17|20|42|53)'
这将匹配列出的数字。有用的是我只想要那些特定的数字。
但是,我想根据数字对这些进行替换。例如,'1'会变成'STL'while'17'会变成'PHX'
'1'
'STL'
'17'
'PHX'
有没有办法在一个正则表达式中做到这一点?如果没有,我怎么能在 Notepad++ 中做到这一点而不做 10 种不同的搜索和替换操作?