开发者

Replace one-line text with newline-separated texts [closed]

开发者 https://www.devze.com 2023-04-06 13:37 出处:网络
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current form. For help clari
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center. Closed 11 years ago.

I have this string of 5,000 people

532433.pptx John 22 AZ 432343.pptx marry 32 CZ 294838.pptx Sam 14 LA.....

It is separated by xxxxxx.pptx

I want to convert to this:

 532433.pptx John 22 AZ 
 432343.pptx marry 32 CZ
 294838.pptx Sam 14 LA
 .....

Like Excel's Copy and changing row and column paste.

I managed to find that pattern number(xxxxxx.pp开发者_如何学Gotx) by Notepad++ Regex (^[0-9]+.pptx)

But how to import found query(532433.pptx) into replace field?


Find what: ([0-9]+.pptx)

Replace with: \r\n\1

Regular expression mode


Input:

532433.pptx John 22 AZ 432343.pptx marry 32 CZ 294838.pptx Sam 14 LA

Output:

532433.pptx John 22 AZ 
432343.pptx marry 32 CZ 
294838.pptx Sam 14 LA

\r\n is newline, \1 is the match corresponding to first bracket (\2 would correspond to second etc. if there were more than 1 brackets in regexp).

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号