问题
How do I delete automatically the brackets and the numbers?
Example:
[132]
[100]
[1011]
How can I delete with Notepad++?
回答1:
Open up the Replace dialog, then enter \[\d+\]
in the "Find what" box, and make sure regular expressions are used as search mode.
By clicking Replace All
, Notepad++ will remove all instances of square brackets with one or more digits in between.
来源:https://stackoverflow.com/questions/26819534/delete-brackets-and-numbers-via-notepad