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

  • Home
  • SEARCH
  • 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

Ask A Question

Stats

  • Questions 150k
  • Answers 150k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Yes, those can be used for validation without using UI… May 12, 2026 at 9:45 am
  • Editorial Team
    Editorial Team added an answer Take a look at this question. You could also just… May 12, 2026 at 9:45 am
  • Editorial Team
    Editorial Team added an answer It's a bug in Doxygen 1.5.5-1.5.9 that is claimed to… May 12, 2026 at 9:45 am

Related Questions

I've developed an equation parser using a simple stack algorithm that will handle binary
I have installed Static and dynamic compression for IIS7, as well as setting the
I'm using TPTP to profile some slow running Java code an I came across
I'm trying to use windbg more, and I keep having problems with the symbol

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.