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.
我使用 RegexClean 转换来替换我的数据
match : ('*SD)(?:'')* replace : SANDISK
它正在将单词 SD 替换为 SANDISK,但它在转换后没有提供任何空间,例如
MSD is getting converted to M SANDISK but it is giving it as MSANDISK
对于之前有空格的单词来说,它显示得很好
M SD is getting converted to M SANDISK
如果你想SD作为一个单独的词匹配,试试这个正则表达式:
SD
match: (^|[ \t\n\r\f])SD([ \t\n\r\f]|$)