[ create a new paste ] login | about

Link: http://codepad.org/hL2sFeJ8    [ raw code | output | fork ]

PHP, pasted on Aug 3:
1
2
3
4
5
<?php

$string = "01. - ??:??:?? - My 'string'";

echo     preg_replace("/^.*?([a-zA-Z])/", '\1', $string);


Output:
1
My 'string'


Create a new paste based on this one


Comments: