Parsing Characters in a Variable

I was wondering if there is a formula agent I can write to change the text in a simple text variable removing the first several characters… for example, I want to remove the "00Y2360 " part of the following characters:

“00Y2360 INT SM64H7AL10052623190+2”

The “INT” part is consistent in all docs.

Thanks, Paul

Subject: @Right ?

Subject: Perfect - one more thing

Karl-HenryThat was a perfect lead! One last thing though, the first character in the remaining string is sometimes a “line return”. Is there a way to delete that in an agent? Formula?

Thanks, Paul

Subject: @replace

Use @Replace( sourcelist ; fromlist ; tolist )

Fromlist sb @char(10) or @char(13)

ToList sb “”

Subject: Cool, Thanks again

Very nice!!! I imagine this is basic stuff but new for me… thanks again for the help, Paul