I want to split this line:
at myFunc http://mysite.com/test.php:13:24
into this:
at myFunc http://mysite.com/test.php
13
24
I've tried using regexes (see below) but they're wrong:
line.split( /[^http]:/ );
line.split( /[^http][:]/ );
line.split( /(?!http):/ );
line.split( /(?!http)[:]/ );
How would I do this?