Hello!
Is it somehow possible to "erase" or cut off some specific part of a variable string?
I was already trying to do it with (replace: ) combined with (substring:) commands, although it results in replacing all of the given characters in the previous sentence.
As in the example:
I'd like to cut last two characters in the phrase "ACBC BC AACAC", that's a result of a string shuffles.
As far as I understand the combination of commands recognizes the last two characters are "AC" and it will eventually slice out not only the last one, but also the rest as well turning the variable string to "BC BC A", what's not my intention. My intention was "ACBC BC AAC".
I'm much thankful for your response!