With regular time, the more lazy people, the more aware of the strong, so in the use of notepad++, also use regular to find, quite cool, regular rules, can not add//similar delimiter, case-sensitive, please tick the interface check box. Other basic and regular symbols are the same!
Netizen quote: I just tried in notepad++, it seems that its regular expression engine is single-byte. with [\u4e00-\u9fa5] and [^\x00-\xff] are not normal match Chinese. is depressed, in Java, C #, JS inside programming can use "[\u4e00-\u9fa5]" to match Chinese, so want to \u4e00 is "one", \u9fa5 is "calls"? Then use: [one-calls] normal to find all the Chinese characters. At this time, the Chinese punctuation is not matched, plus [\uff01-\uff5e], that is [! -~], the perfect solution ... It is concluded that the regular expression of Chinese in notepad++ and UltraEdit is: [one-Calls!] -~], go and search for it.
Using the regular match feature in notepad++