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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T03:28:06+00:00 2026-05-15T03:28:06+00:00

so I know \bBlah\b will match a whole Blah, however it will also match

  • 0

so I know \bBlah\b will match a whole Blah, however it will also match Blah in “Blah.jpg” I don’t want it to. I want to match only whole words with a space on either side.

  • 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-05-15T03:28:06+00:00Added an answer on May 15, 2026 at 3:28 am

    You can try: \sBlah\s.

    Or if you allow beginning and end anchors, (^|\s)Blah(\s|$)

    This will match "Blah" by itself, or each Blah in "Blah and Blah"

    See also

    • regular-expressions.info/Character classes and Anchors
      • \s stands for “whitespace character”.
      • The caret ^ matches the position before the first character in the string
      • Similarly, $ matches right after the last character in the string

    Lookahead variant

    If you want to match both Blah in "Blah Blah", then since the one space is “shared” between the two occurrences, you must use assertions. Something like:

    (^|\s)Blah(?=\s|$)
    

    See also

    • regular-expressions.info/Lookarounds

    Capturing only Blah

    The above regex would also match the leading whitespace.

    If you want only Blah, ideally, lookbehind would’ve been nice:

    (?<=^|\s)Blah(?=\s|$)
    

    But since Javascript doesn’t support it, you can instead write:

    (?:^|\s)(Blah)(?=\s|$)
    

    Now Blah would be captured in \1, with no leading whitespace.

    See also

    • regular-expressions.info/Grouping and flavor comparison
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I know this might be a no-brainer, but please read on. I also know
I know there is a registry key indicating the install directory, but I don't
I know i can do something like ab[^c]+def which should match ab_blah_hi_blah_def but is
I'm trying to send colored text to a TextCtrl widget, but don't know how
I want to know if I could play a mp3 file or mp4 (video)
I'm still learning how to use Sizzle selector. So far I know this: Sizzle('#blah')
such a silly question I know, but I want to remove the filename in
Know of an OCAML/CAML IDE? Especially one that runs on Linux?
Know of any good libraries for this? I did some searches and didn't come
I know in certain circumstances, such as long running processes, it is important to

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.