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.
('Hassiotis, Sophia(SH1)')我有一个字符串,即
('Hassiotis, Sophia(SH1)')
我只想要 SH1。
正则表达式应该是什么?
谢谢你。
我正在使用记事本++
从你的问题来看SH1就足够了;-),但我怀疑你不想有更灵活的东西。
SH1
\('.*\((.*)\)'\)
可能是一个解决方案。我猜它需要更新的 Notepad++。匹配的字符串可以\1在替换字符串中引用。
\1