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
I used a regular expression to remove superfluous musical notes in the middle of a "paragraph".
I only want a musical symbol at the start and at the end. Not on each line within the 2 rows
In this example there are 4 musical symbols, but I only want 2.
With the expression "** ♪$**" only the 2nd one should be removed.
I now know what has changed.
What has changed is that there's only 1 line ending in that text.
Before it would also see the <br> as a line ending.
I can make this new behaviour to good use by using this expression "^-" to remove the dialog dash of the first line.
The 2nd line with the dash will then remain.
It does this only when you use "replace" repetitively,
If you use "replace all" all of them will be removed.
I wonder if the behaviour change is intended.
Like I wrote.... I can now put it to good use.
I have a workaround for removing the musical symbols and use the expression ♪\r\n♪ and replace it with \r\n
The text was updated successfully, but these errors were encountered:
I noticed a change in behaviour 2 months ago when using regular expression.
I made a ticket, but it was just closed without a change in code.
#8996
I used a regular expression to remove superfluous musical notes in the middle of a "paragraph".
I only want a musical symbol at the start and at the end. Not on each line within the 2 rows
In this example there are 4 musical symbols, but I only want 2.
With the expression "** ♪$**" only the 2nd one should be removed.
I now know what has changed.
What has changed is that there's only 1 line ending in that text.
Before it would also see the
<br>
as a line ending.I can make this new behaviour to good use by using this expression "^-" to remove the dialog dash of the first line.
The 2nd line with the dash will then remain.
It does this only when you use "replace" repetitively,
If you use "replace all" all of them will be removed.
I wonder if the behaviour change is intended.
Like I wrote.... I can now put it to good use.
I have a workaround for removing the musical symbols and use the expression
♪\r\n♪
and replace it with\r\n
The text was updated successfully, but these errors were encountered: