VS常用正则替换

匹配整体替换

查找:.*
替换:$1
栗子:将"str"替换为tr(“str”)
搜索:".*"
替换:tr("$1")

匹配通用部分替换

查找:([^"]*)
替换:$1
栗子:将u8"str"替换为tr(“str”)
查找:u8"([^"]*)"
替换:tr("$1")

发布了103 篇原创文章 · 获赞 28 · 访问量 7万+

猜你喜欢

转载自blog.csdn.net/mumufan05/article/details/101423917