Skip to content

Instantly share code, notes, and snippets.

@twaddington
Created March 1, 2011 06:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save twaddington/848724 to your computer and use it in GitHub Desktop.
Save twaddington/848724 to your computer and use it in GitHub Desktop.
<?php
$string = "My product Vol. 002 Season 03";
$new_string = preg_replace(/\b0+(?=\d+\b)/, '', $string);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment