[ create a new paste ] login | about

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

PHP, pasted on May 30:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

  $str = "This is         a dummy text         . I need              




to                                      format
this.";

  $patterns = array("/\s+/", "/\s([?.!])/");
  $replacer = array(" ","$1");

  $str = preg_replace( $patterns, $replacer, $str );

  var_dump( $str );


Output:
1
string(44) "This is a dummy text. I need to format this."


Create a new paste based on this one


Comments: