[ create a new paste ] login | about

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

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

$str = preg_replace("/\d/", "", "This 1 is 01 2 a 2 test 4 45 aaa");
echo $str;

?>


Output:
1
This  is   a  test   aaa


Create a new paste based on this one


Comments: