I've got a string which goes something like myString__sfsdfsf
All I know is that there is a __
somewhere in the string. Content of the string and number of characters is unknown.
I want to remove the __
and all characters that follow so I am left with just myString
. How can I achieve this using PHP?