Assuming I have the following string:
this is ;a cool test
How can I remove everything from the start up to the first time a ; occurs?
The expected output would be a cool test.
I only know how to remove a fixed amount of characters using the bracket notation, which is not helpful here because the location of the ; is not fixed.