Thank you very much! Since I have you here already, instead of opening a new thread, is there a way to clear a single character from a string? so far, I have only been able to utilise
txt = FormattedString("Hello")
txt.append(" World")
But not, for instance,
txt.clear(" World").
in order to remove specific characters (by index, preferably). Is there some way of achieving this? Thank you!