Home > Article > Web Front-end > How to Match Alphanumeric Strings with Both Numbers and Characters Using Regex?
Matching Alphanumeric Strings with Both Numbers and Characters
In regex, the pattern "/^([a-zA-Z0-9] )$/" enforces alphanumeric input. However, it allows strings containing only numbers or characters. To require both characters and numbers, consider a multifaceted approach.
Solution:
The following pattern combines multiple conditions:
/(?=.*[0-9])(?=.*[a-zA-Z])([a-zA-Z0-9]+)$/
Explanation:
The above is the detailed content of How to Match Alphanumeric Strings with Both Numbers and Characters Using Regex?. For more information, please follow other related articles on the PHP Chinese website!