I\'ve searched many threads here on removing the first two lines of a string but I can\'t seem to get it to work with every solution I\'ve tried.
Here is what my string
I don't know what your end character is, but what about something like
postString = inputString.split("\n",2)[2]
The end character might need to be escaped, but that is what I would start with.