RegEx

From Braindisconnect
Revision as of 08:38, 2 March 2015 by Jbutler (talk | contribs) (Created page with "== Comma without white space after it == /,(?!\s)/ PHP Usage Example: $array = preg_split('/,(?!\s)/', $string); Category:Misc")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Comma without white space after it

/,(?!\s)/

PHP Usage Example:

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