Top "Alphanumeric" questions

Alphanumeric refers to strings containing a combination of letters and digits.

Validating Alpha-Numeric values with all Special Characters

i want to validate my text field with below: 1. alpha-numeric 2. And all special characters i am not good in regex …

javascript regex validation special-characters alphanumeric
How do I check if a string only contains alphanumeric characters and dashes?

The string I'm testing can be matched with [\w-]+. Can I test if a string conforms to this in Python, …

python regex string alphanumeric
converting a number base 10 to base 62 (a-zA-Z0-9)

I have a number in base 10. Is there anyway to translate it to a base 62? Example: echo convert(12324324); // returns Yg3 (…

php encoding character-encoding numeric alphanumeric
Bash need to test for alphanumeric string

Trying to verify that a string has only lowercase, uppercase, or numbers in it. if ! [[ "$TITLE" =~ ^[a-zA-Z0-9]+$ ]]; then echo "…

regex string bash if-statement alphanumeric
Generating Alphanumeric random string in Java

I am using String Builder from another answer, but I can't use anything but alpha/numeric, no whitespace, punctuation, etc. …

java string random alphanumeric
Check if a String is alphanumeric in Swift

In Swift, how can I check if a String is alphanumeric, ie, if it contains only one or more alphanumeric …

string swift alphanumeric
Checking if any character in a string is alphanumeric

I want to check if any character in a string is alphanumeric. I wrote the following code for that and …

python string alphanumeric
Regular expression for accepting alphanumeric characters (6-10 chars) .NET, C#

I am building a user registration form using C# with .NET. I have a requirement to validate user entered password …

c# regex char numbers alphanumeric
Return rows where first character is non-alpha

I'm trying to retrieve all columns that start with any non alpha characters in SQlite but can't seem to get …

sql sqlite sql-like alphanumeric
Regex to validate length of alphanumeric string

I have the following regular expression: ^[a-zA-Z0-9]+( [a-zA-Z0-9]+)*$ I'm trying to validate a string between 0-10 characters, the …

c# .net regex validation alphanumeric