Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
528 views
in Technique[技术] by (71.8m points)

edit multiple line at once in text editor

we can add four space at once to all the selected text line by pressing tab button. is there anyway that we can add or remove texts in front or back of each line at once. actually I have a text file where every line ends with ":x". here x is random numbers I want to remove all of them at once. any way?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

You can use Notepad++ for that. Use Replace tool with enabled regular expressions and such search string: x:[0-9].*$ (don't enable ". matches newline"). It will find occurences like abcx:123 but ignore abcx: or x:


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...