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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T04:04:27+00:00 2026-05-18T04:04:27+00:00

Can you please help us to extract word from a sentence like: He’s led

  • 0

Can you please help us to extract word from a sentence like:

He’s led U.S. efforts for government-centered management ever since, resulting in the missions to the area.

How can we have:

He's 
led 
U.S. 
efforts 
for 
government-centered
management 
ever 
since
resulting 
in 
the  
missions 
to 
the 
area

Thank you very much in advance.

Edit and comment:

We thank all for your kind help.

  • 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-18T04:04:28+00:00Added an answer on May 18, 2026 at 4:04 am

    In your case, you can split on the regex

    (?:(?<![A-Z])\.|,)?(\s+|$)
    

    This splits on whitespace, optionally preceded by a dot/comma (but on the dot only if it’s not preceded by an uppercase ASCII letter).

    It will fail on edge cases like etc., so if you have a list of those, you can work them into the regex if your regex engine supports variable repetition inside lookbehinds. Which one are you using?

    E. g.

    (?:(?<![A-Z]|\betc|\bca|\bapprox)\.|,)?(\s+|$)
    

    would split

    He's led U.S. efforts for management, resulting in approx. 3 times the missions to the area, etc.
    

    into

    He's
    led
    U.S.
    efforts
    for
    management
    resulting
    in
    approx.
    3
    times
    the
    missions
    to
    the
    area
    etc.
    

    Explanation:

    (?:          # match either...
     (?<![A-Z]   # (as long as not preceded by A-Z
      |\betc     # or etc
      |\bca      # or ca
      |\bapprox  # or approx
     )           # ...)
     \.          # a dot
     |           # or
     ,           # a comma
    )?           # if present.
    (\s+|$)      # then either match whitespace or the end of the string.
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Can someone please help me? I'm trying to extract the PostalCode, Latitude and Longitude
Any body please can please help me, how to center a JFrame on Mac.
Can someone please help quickly mute or unmute the stage volume in Flash CS3
can someone please help me. why does this return an error: Dim stuff As
can u please help me how to return an instance of a function which
can someboody please help me convert these strings/ints into a usable font thing? it
Can anyone please help me to work out how to achieve the following? I
Can someone please help me with using Regex with NSPredicate? NSString *regex = @(?:[A-Za-z0-9]);
can you please help me with this issue the String class does not have
Can anyone please help me to add video controls (play, pause, forward, seekbar) 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.