Tagged Questions
5
votes
6answers
4k views
Regex - Match only letters, numbers, and one space between each word
How can I create a regex expression which will match only letters and numbers, and one space between each word?
Good Examples:
Amazing
Hello Beautiful World
I am 13 years old
Bad Examples:
...
2
votes
3answers
417 views
Perl - How do I insert a space between an alpha character and a numeric character?
This is a continuation of my original question:
Perl- How do I insert a space before each capital letter except for the first occurance or existing?
I was able to achieve a desired result of ...
1
vote
1answer
80 views
how to determine the number assigned to each letter in a cryptarithm?
I have an assignment that needs to solve a cryptarithm. But I cant understand the algorithms that I saw in the internet. Could anybody explain how to do this in simple words?
0
votes
4answers
375 views
Check if a string contains letters and cancel them
I've got an UITextField and I need to allow only numbers, comma or point typing in this field.
How can I check if this string contains any character instead of these above and how can I ...
0
votes
1answer
58 views
Simple regex problem!
I want to remove everything from a string except numbers, letters, _ (underscore) and : (colon)
It's PREG and I've only come across #\W#, but it removes the : (colon).
Any help is appreciated, ...
0
votes
2answers
596 views
letters or numbers only in a password with jquery
I found this code for alphanumeric check ("Letters, numbers, spaces or underscores") but I want to change so I will be able to write only letters or numbers. Can anyone tell me how to change this ...
0
votes
2answers
62 views
What Letter and Number Mixups Need to be Considered?
I just had a user tell me his registration key didn't work. It took me quite a while to figure out that he entered the capital letter "O" instead of the number "0".
So I decided that it is best for ...