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.










share|improve this question




















  • 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

















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.










share|improve this question




















  • 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















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.










share|improve this question















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






share|improve this question















share|improve this question













share|improve this question




share|improve this question








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 example Herbert, but that doesn’t make Herbert a women’s name …
    – misorude
    Nov 20 at 9:40
















  • 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










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














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");





share|improve this answer





















    Your Answer






    StackExchange.ifUsing("editor", function () {
    StackExchange.using("externalEditor", function () {
    StackExchange.using("snippets", function () {
    StackExchange.snippets.init();
    });
    });
    }, "code-snippets");

    StackExchange.ready(function() {
    var channelOptions = {
    tags: "".split(" "),
    id: "1"
    };
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function() {
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled) {
    StackExchange.using("snippets", function() {
    createEditor();
    });
    }
    else {
    createEditor();
    }
    });

    function createEditor() {
    StackExchange.prepareEditor({
    heartbeatType: 'answer',
    convertImagesToLinks: true,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: 10,
    bindNavPrevention: true,
    postfix: "",
    imageUploader: {
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    },
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    });


    }
    });














    draft saved

    draft discarded


















    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

























    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");





    share|improve this answer

























      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");





      share|improve this answer























        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");





        share|improve this answer












        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");






        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered Nov 20 at 9:43









        James Whiteley

        1,705523




        1,705523






























            draft saved

            draft discarded




















































            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.




            draft saved


            draft discarded














            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





















































            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







            Popular posts from this blog

            404 Error Contact Form 7 ajax form submitting

            How to know if a Active Directory user can login interactively

            TypeError: fit_transform() missing 1 required positional argument: 'X'