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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T21:46:00+00:00 2026-06-01T21:46:00+00:00

What is a word boundary in a Python regex? Can someone please explain this

  • 0

What is a word boundary in a Python regex? Can someone please explain this on these examples:

Example 1

>>> x = '456one two three123'
>>> y=re.search(r"\btwo\b",x)
>>> y
<_sre.SRE_Match object at 0x2aaaaab47d30>

Example 2

>>> y=re.search(r"two",x)
>>> y
<_sre.SRE_Match object at 0x2aaaaab47d30>

Example 3

>>> ip="192.168.254.1234"
>>> if re.search(r"\b\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\b",ip):
...    print ip
...

Example 4

>>> ip="192.168.254.1234"
>>> if re.search(r"\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}",ip):
...    print ip
192.168.254.1234
  • 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-01T21:46:02+00:00Added an answer on June 1, 2026 at 9:46 pm

    “word boundary” means exactly what it says: the boundary of a word, i.e. either the beginning or the end.

    It does not match any actual character in the input, but it will only match if the current match position is at the beginning or end of the word.

    This is important because, unlike if you just matched whitespace, it will also match at the beginning or end of the entire input.

    So '\bfoo' will match 'foobar' and 'foo bar' and 'bar foo', but not 'barfoo'.

    'foo\b' will match 'foo bar' and 'bar foo' and 'barfoo', but not 'foobar'.

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

Sidebar

Related Questions

How can I split by word boundary in a regex engine that doesn't support
given this text: hello-world I can match it with this regex: hello\-.+?\b The catch
Q1. why we can not use word boundary and back reference without using r
I am having this problem with word boundary identification. I removed all the markup
i need a regex that matches an expression ending with a word boundary, but
Is it possible to truncate a Java string to the closest word boundary after
I don't understand why with this regex the method returns false; Pattern.matches(\\bi, an is);
Regex: \b< low= number= low=>\b Example string: <b22>Aquí se muestran algunos síntomas < low=
word 1 word 2 word 3 word 4 And so on... How can I
Word has this feature where it merges tables that are inserted together, so 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.