[ create a new paste ] login | about

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

PHP, pasted on Oct 17:
1
2
3
4
5
6
<?php

    $str =  "example This 1 is 01 2 a 2 test 4 45 aaa";
    echo preg_replace("/^example.*/", "hello world", $str);

?>


Output:
1
hello world


Create a new paste based on this one


Comments: