wanting to join a bunch of lines.
-
Hello, i’m trying to join a bunch of lines together quickly and hopefully at once.
he’s an example of what i have and what i need. Image
-
Please explain your example. I don’t understand your need.
Maybe you can try Edit -> Blank Operations -> EOL to SpaceBTW, how to earn 2 reputaion in this forum? I have to wait 20 minutes to rely another post.
-
In the image the bottom file is the one it needs to look like and the one above is what all the lines look like. i want to try and join the lines together and get this effect.
-
find:
(?-s)<(?!/)(.*?)>(.*)\R(.*?)</\1>
replace:
<\1>\2\3</\1>
Here is Regex syntax.
Tested text:
<tag1>dfgsdfg sdfg</tag1> <tag1>dfgsdfg <tag2> </tag2>sdfg</tag1>
-
Thanks it’s mostly worked with 1 or 2 issues for another line but it’s super easy to fix now so thank you!