この行を分割したい:
at myFunc http://mysite.com/test.php:13:24
これに:
at myFunc http://mysite.com/test.php
13
24
正規表現を使用してみました (以下を参照) が、間違っています:
line.split( /[^http]:/ );
line.split( /[^http][:]/ );
line.split( /(?!http):/ );
line.split( /(?!http)[:]/ );
どうすればいいですか?