Some native PHP string functions have a parameter which is a string of one or more unordered characters (also referred to as a "character mask"). In some cases, character ranges can be expressed using double-dot syntax.
For example: echo trim('foo24', '0..9'); prints foo because 2 and 4 fall within the 0 through 9 range.
What are the other native PHP string functions with the same feature?
