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 152025
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T09:32:59+00:00 2026-05-11T09:32:59+00:00

I don’t understand or see the need for regular expressions. Can some explain them

  • 0

I don’t understand or see the need for regular expressions.

Can some explain them in simple terms and provide some basic examples where they could be useful, or even critical.

  • 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. 2026-05-11T09:33:00+00:00Added an answer on May 11, 2026 at 9:33 am

    Use them where you need to use/manipulate patterns. For instance, suppose you need to recognise the following pattern:

    • Any letter, A-Z, either upper or lower case, 5 or 6 times
    • 3 digits
    • a single letter a-z (definitely lower case)

    (Things like this crop up for zip code, credit card, social security number validation etc.)

    That’s not really hard to write in code – but it becomes harder as the pattern becomes more complicated. With a regular expression, you describe the pattern (rather than the code to validate it) and let the regex engine do the work for you.

    The pattern here would be something like

    [A-Za-z]{5,6}[0-9]{3}[a-z] 

    (There are other ways of expressing it too.) Grouping constructs make it easy to match a whole pattern and grab (or replace) different bits of it, too.

    A few downsides though:

    • Regexes can become complicated and hard to read quite quickly. Document thoroughly!
    • There are variations in behaviour between different regex engines
    • The complexity can be hard to judge if you’re not an expert (which I’m certainly not!); there are ‘gotchas’ which can make the patterns really slow against particular input, and these gotchas aren’t obvious at all
    • Some people overuse regular expressions massively (and some underuse them, of course). The worst example I’ve seen was where someone asked (on a C# group) how to check whether a string was length 3 – this is clearly a job for using String.Length, but someone seriously suggested matching a regex. Madness. (They also got the regex wrong, which kinda proves the point.)
    • Regexes use backslashes to escape various things (e.g. use . to mean ‘a dot’ rather than just ‘any character’. In many languages the backslash itself needs escaping.
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

http://clang.llvm.org/docs/BlockLanguageSpec.txt Looks really cool. However, I don't understand it. I don't see examples it.
I see these implementation of BlockingQueue and can't understand the differences between them. My
I don't understand what everyauth promises are. I see that I need to return
My current solution will suck sometimes EDIT For those who don't understand,see this example:
I don't understand, why does the following regular expression: ^*$ Match the string 127.0.0.1?
I really don't understand why do we need to create channel.html file, as mentioned
I'm newbie in Objective-C, and don't understand why we need to use [super dealloc]
I see some examples of the touchesBegan callback use: for (UITouch *touch in touches)
Something basic that i don't understand: I have header.php with navigation bar for my
I'm making a simple IRC client for myself because I really don't see the

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.