[ create a new paste ] login | about

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

PHP, pasted on Jan 29:
1
2
3
4
<?php
$txt = 'a		b	c				d';
$txt = preg_replace('/\t/', '', $txt);
echo $txt;


Output:
1
abcd


Create a new paste based on this one


Comments: