Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 9169351
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T15:51:46+00:00 2026-06-17T15:51:46+00:00

I have used the example from http://www.regular-expressions.info/examples.html to validate the following code while [[

  • 0

I have used the example from http://www.regular-expressions.info/examples.html to validate the following code

while [[ ! $name =~ ^[a-Z][ \t][a-Z]. ]]; do

                echo "Please enter your Firstname and Surname e.g Joe Bloggs"                           # (a)Ask for NAME,TELEPHONE NUMBER,DOB #
                read name
                echo
        done

I am quite simply looking to ensure user enters first and second name with a space any help would be greatly appreciated!

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-17T15:51:46+00:00Added an answer on June 17, 2026 at 3:51 pm

    There are several problems with your regex:

    • You’re checking for characters between a (lowercase) and Z (uppercase). This won’t do what you expect, use [A-Za-z] to check both upper and lowercase letters.
    • You’re missing repeat characters; use + to match one or more characters.
    • The end-of-match should be $, not . (which matches any single character).

    Try this:

    ^[A-Za-z]+[\ \t][A-Za-z]+$
    

    If you want to validate Uppercased first and last names you could use:

    ^[A-Z][a-z]+[\ \t][A-Z][a-z]+$
    

    But this would not work with names like Marty McFly that don’t follow that rule.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am stuggling to comprehend how to accomplish the following task From : http://www.example.com/main/this_dir/page.html
I have used this code (kind of tutorial) at http://code.google.com/p/gwt-examples/wiki/gwt_hmtl5 ... In this code,
I have been studying the todos example for Meteor. http://www.meteor.com/examples/todos I vaguely understand how
I used to have my permalinks to standard format, something like http://example.com/?page_id=2 . Now
I have a complexType defined in targetNameSpace as say http://xyz.example.com and used in many
I have used an open source code from CodeProject to read email from incoming
I have some code I copied from an example and I am not certain
I have used HTML purifier to weed out any suspect stuff coming in from
From http://www.learncpp.com/cpp-tutorial/125-the-virtual-table/ , code such as class Base { public: virtual void function1() {};
The following example is taken from: http://php.net/manual/en/function.curl-multi-close.php#example-3540 This example will create two cURL handles,

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.