RegEx: Difference between revisions

From Braindisconnect
Jump to navigationJump to search
(Created page with "== Comma without white space after it == /,(?!\s)/ PHP Usage Example: $array = preg_split('/,(?!\s)/', $string); Category:Misc")
 
(No difference)

Latest revision as of 08:38, 2 March 2015

Comma without white space after it

/,(?!\s)/

PHP Usage Example:

$array = preg_split('/,(?!\s)/', $string);