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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T07:25:26+00:00 2026-06-03T07:25:26+00:00

Is there a way in regex’s to match a string that is arbitrarily split

  • 0

Is there a way in regex’s to match a string that is arbitrarily split over multiple lines – say we have the following format in a file:

msgid "This is "
"an example string"
msgstr "..."

msgid "This is an example string"
msgstr "..."

msgid ""
"This is an " 
"example" 
" string"
msgstr "..."

msgid "This is " 
"an unmatching string" 
msgstr "..."

So we would like to have a pattern that would match all the example strings, ie: match the string regardless of how it’s split across lines. Notice that we are after a specific string as shown in the sample, not just any string. So in this case we would like to match the string "This is an example string".

Of course we can can easily concat the strings then apply the match, but got me wondering if this is possible. I’m talking Python regex’s but a general answer is ok.

  • 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-03T07:25:27+00:00Added an answer on June 3, 2026 at 7:25 am

    Do you want to match a series of words? If so, you could look for words with just spaces (\s) in between, since \s matches newlines and spaces alike.

    import re
    
    search_for = "This is an example string"
    search_for_re = r"\b" + r"\s+".join(search_for.split()) + r"\b"
    pattern = re.compile(search_for_re)
    match = lambda s: pattern.match(s) is not None
    
    s = "This is an example string"
    print match(s), ":", repr(s)
    
    s = "This is an \n example string"
    print match(s), ":", repr(s)
    
    s = "This is \n an unmatching string"
    print match(s), ":", repr(s)
    

    Prints:

    True : 'This is an example string'
    True : 'This is an \n example string'
    False : 'This is \n an unmatching string'
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way to specify regex that would match a string but from
Is there a way to get multiple capture groups out of a regex that
I'm trying to write regex that will split a string when there is whitespace
Is there a way to precompile a regex in Perl? I have one that
Is there any way to handle the exception if regex.Matches didn't match anything and
Is there any way to have this: [one[two]][three] And extract this with a regex?
All of my string delete's with regex use gsub, is there a shorter way?
Is there any way in regex to match 2 cases i got this file
is there another REGEX way (or another way) to ensure that a model class
Is there any way to use regex match on a stream in python? like

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.