Regular expression for validating women's name
up vote
-4
down vote
favorite
Is there a way to validate only women's name using Regular Expression
?
I am expecting the name can take only alphabets and space. I have used following regular expression ^[a-zA-Zs]+$
Is this correct? else please help me to figure out a regular expression which can be used to verify string
(women's name) with alphabets and space.
javascript
add a comment |
up vote
-4
down vote
favorite
Is there a way to validate only women's name using Regular Expression
?
I am expecting the name can take only alphabets and space. I have used following regular expression ^[a-zA-Zs]+$
Is this correct? else please help me to figure out a regular expression which can be used to verify string
(women's name) with alphabets and space.
javascript
4
You can not have a regular expression to validate names, because names don't follow a specific pattern. Much less women names. Not taking into account different names in different languages, and not taking into account names that apply to both male and female.
– Ahmad
Nov 20 at 8:22
Yes, your regex sould work. At least for your requirement (only letters and spaces). Names itself you can't validate. But why don't you just try it out?
– CodeF0x
Nov 20 at 8:22
Possible duplicate of regex with space and letters only?
– vahdet
Nov 20 at 8:31
Your expression matches for exampleHerbert
, but that doesn’t make Herbert a women’s name …
– misorude
Nov 20 at 9:40
add a comment |
up vote
-4
down vote
favorite
up vote
-4
down vote
favorite
Is there a way to validate only women's name using Regular Expression
?
I am expecting the name can take only alphabets and space. I have used following regular expression ^[a-zA-Zs]+$
Is this correct? else please help me to figure out a regular expression which can be used to verify string
(women's name) with alphabets and space.
javascript
Is there a way to validate only women's name using Regular Expression
?
I am expecting the name can take only alphabets and space. I have used following regular expression ^[a-zA-Zs]+$
Is this correct? else please help me to figure out a regular expression which can be used to verify string
(women's name) with alphabets and space.
javascript
javascript
edited Nov 20 at 9:37
Piccaza
2,98143760
2,98143760
asked Nov 20 at 8:19
hacker tom
144
144
4
You can not have a regular expression to validate names, because names don't follow a specific pattern. Much less women names. Not taking into account different names in different languages, and not taking into account names that apply to both male and female.
– Ahmad
Nov 20 at 8:22
Yes, your regex sould work. At least for your requirement (only letters and spaces). Names itself you can't validate. But why don't you just try it out?
– CodeF0x
Nov 20 at 8:22
Possible duplicate of regex with space and letters only?
– vahdet
Nov 20 at 8:31
Your expression matches for exampleHerbert
, but that doesn’t make Herbert a women’s name …
– misorude
Nov 20 at 9:40
add a comment |
4
You can not have a regular expression to validate names, because names don't follow a specific pattern. Much less women names. Not taking into account different names in different languages, and not taking into account names that apply to both male and female.
– Ahmad
Nov 20 at 8:22
Yes, your regex sould work. At least for your requirement (only letters and spaces). Names itself you can't validate. But why don't you just try it out?
– CodeF0x
Nov 20 at 8:22
Possible duplicate of regex with space and letters only?
– vahdet
Nov 20 at 8:31
Your expression matches for exampleHerbert
, but that doesn’t make Herbert a women’s name …
– misorude
Nov 20 at 9:40
4
4
You can not have a regular expression to validate names, because names don't follow a specific pattern. Much less women names. Not taking into account different names in different languages, and not taking into account names that apply to both male and female.
– Ahmad
Nov 20 at 8:22
You can not have a regular expression to validate names, because names don't follow a specific pattern. Much less women names. Not taking into account different names in different languages, and not taking into account names that apply to both male and female.
– Ahmad
Nov 20 at 8:22
Yes, your regex sould work. At least for your requirement (only letters and spaces). Names itself you can't validate. But why don't you just try it out?
– CodeF0x
Nov 20 at 8:22
Yes, your regex sould work. At least for your requirement (only letters and spaces). Names itself you can't validate. But why don't you just try it out?
– CodeF0x
Nov 20 at 8:22
Possible duplicate of regex with space and letters only?
– vahdet
Nov 20 at 8:31
Possible duplicate of regex with space and letters only?
– vahdet
Nov 20 at 8:31
Your expression matches for example
Herbert
, but that doesn’t make Herbert a women’s name …– misorude
Nov 20 at 9:40
Your expression matches for example
Herbert
, but that doesn’t make Herbert a women’s name …– misorude
Nov 20 at 9:40
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
You can't use Regex to match on women's names specifically (short of doing something ridiculous like matching every name in a Regex like /(Martha|Jane|Bonnie)/
).
You'd be better served making an Array of the names you want to match and checking that the String you have is in that Array, similar to below:
["Martha", "Jane", "Bonnie"].includes("Jane");
// -------------------------------------------- //
let list = ["Martha", "Jane", "Bonnie"];
list.includes("Jane");
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
You can't use Regex to match on women's names specifically (short of doing something ridiculous like matching every name in a Regex like /(Martha|Jane|Bonnie)/
).
You'd be better served making an Array of the names you want to match and checking that the String you have is in that Array, similar to below:
["Martha", "Jane", "Bonnie"].includes("Jane");
// -------------------------------------------- //
let list = ["Martha", "Jane", "Bonnie"];
list.includes("Jane");
add a comment |
up vote
0
down vote
You can't use Regex to match on women's names specifically (short of doing something ridiculous like matching every name in a Regex like /(Martha|Jane|Bonnie)/
).
You'd be better served making an Array of the names you want to match and checking that the String you have is in that Array, similar to below:
["Martha", "Jane", "Bonnie"].includes("Jane");
// -------------------------------------------- //
let list = ["Martha", "Jane", "Bonnie"];
list.includes("Jane");
add a comment |
up vote
0
down vote
up vote
0
down vote
You can't use Regex to match on women's names specifically (short of doing something ridiculous like matching every name in a Regex like /(Martha|Jane|Bonnie)/
).
You'd be better served making an Array of the names you want to match and checking that the String you have is in that Array, similar to below:
["Martha", "Jane", "Bonnie"].includes("Jane");
// -------------------------------------------- //
let list = ["Martha", "Jane", "Bonnie"];
list.includes("Jane");
You can't use Regex to match on women's names specifically (short of doing something ridiculous like matching every name in a Regex like /(Martha|Jane|Bonnie)/
).
You'd be better served making an Array of the names you want to match and checking that the String you have is in that Array, similar to below:
["Martha", "Jane", "Bonnie"].includes("Jane");
// -------------------------------------------- //
let list = ["Martha", "Jane", "Bonnie"];
list.includes("Jane");
answered Nov 20 at 9:43
James Whiteley
1,705523
1,705523
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53388791%2fregular-expression-for-validating-womens-name%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
4
You can not have a regular expression to validate names, because names don't follow a specific pattern. Much less women names. Not taking into account different names in different languages, and not taking into account names that apply to both male and female.
– Ahmad
Nov 20 at 8:22
Yes, your regex sould work. At least for your requirement (only letters and spaces). Names itself you can't validate. But why don't you just try it out?
– CodeF0x
Nov 20 at 8:22
Possible duplicate of regex with space and letters only?
– vahdet
Nov 20 at 8:31
Your expression matches for example
Herbert
, but that doesn’t make Herbert a women’s name …– misorude
Nov 20 at 9:40