I'm trying to find a regex that will be capable of adding a trailing space at the end of every segment in a file in Studio. Does anyone know of a regular expression that would do the trick? Thanks!
I'm trying to find a regex that will be capable of adding a trailing space at the end of every segment in a file in Studio. Does anyone know of a regular expression that would do the trick? Thanks!
Find what: ^(.*)$
Replace with: $1#
where # should be replaced with a space (blank)
should work.
Caveat: For some reason, Studio 2019 Find/Replace handles the first segment incorrectly and so must be corrected manually.
Yes, this does work, thank you very much Anthony!
Yes, this does work, thank you very much Anthony!