Hello. I've run into a small issue. I need to split a string with a "?" in it. However, I can't get the split to work - either it throws an error or it doesn't produce the proper result.
I've tried
split("?", $mystr)
split("\?", $mystr)
split('?', $mystr)
split('\?', $mystr)
split(/\?/...