You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
hey thanks for replying, I tried this on the above example but doesn't seem to work, not sure what im doing it wrong. using one in your screen shot and then choosing regular expression instead of text in drop down and still not working.
It could be as simple as replacing \n with (using regular expressions) if it's simple text, e.g. in a form. However, if it's HTML you have to enable HTML "Input & output" mode and then replace things like </p>\s*<p>|<br> with . This last one should work in most places, but it will remove all line breaks. You have to add some kind of context to limit it, similar to @iG8R's answer.
Unsure what the term for this is but here is an example of original vs what I wish replacement looks like.
original:
I walked today.
A Lot.
To the campus.
replacement:
I walked today. A lot. To the campus.
basically the next line gets pulled up to save vertical spacing, wondering if this is possible.
The text was updated successfully, but these errors were encountered: