Tagged Questions
6
votes
7answers
496 views
What is the best way to match only letters in a regex?
I would really like to use \w but it also matches underscores so I'm going with [A-Za-z] which feels unnecessarily verbose and America centric. Is there a better way to do this? Something like [\w^_] ...
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:
...
1
vote
3answers
69 views
Regex - With Space and Special Characters
I'm using the following Regex ^[a-zA-Z0-9]\s{2,20}$ for input
- Letters A - Z
- Letters a - z
- Numbers 0 - 9
The input length must be a least 2 characters and maximum 20 characters.
I also want to ...
1
vote
3answers
123 views
Function to return only the capital letter(s!) at the beginning of a string?
I'm trying to retrieve the first couple of capital letters from a string in PHP, but I'm not sure if there's a specific function to do this. Should I perhaps resort to using regex? If so, how?
Here's ...
0
votes
3answers
169 views
Python search HTML document for capital letters
So I have all these html documents that have strings of capital letter in various places in alt tags, title tage, link text...etc.
<li><a title='BUY FOOD' ...
0
votes
1answer
77 views
Regex to allow apostrophe only for words ending with s
I'm using this Regex ^[a-zA-Z0-9]{2,20}$ to allow the following rules:
- Letters a-z
- Letters A-Z
- Numbers 0-9
- Input length must be at least 2 characters and maximum 20 characters.
I also want to ...
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
238 views
How to validate username using regexp?
How validate username using regexp ?
For English letters, Numbers and spaces I am using :
/^[a-zA-Z]{1}([a-zA-Z0-9]|\s(?!\s)){4,14}[^\s]$/
How can i add arabic letters ?