you want a sequence one or more digits followed by a string, so you should look up
1) how a digit is expressed in a pattern
2) what quantifier is used for one or more occurences
3) what assertion character to use for the end of the string
http://www.php.net/manual/en/pcre.pattern.syntax.php
a search for the above keywords on thís page should easily get you what you need.
put these element together, don't forget the delimiters, and use an empty string as replacement argument.