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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T00:18:06+00:00 2026-05-26T00:18:06+00:00

How can i get this pattern to work: Pattern pattern = Pattern.compile([\\p{P}\\p{Z}]); Basically, this

  • 0

How can i get this pattern to work:

Pattern pattern = Pattern.compile("[\\p{P}\\p{Z}]");

Basically, this will split my String[] sentence by any kind of punctuation character (p{P} or any kind of whitespace (p{Z}). But i want to exclude the following case:

(?<![A-Za-z-])[A-Za-z]+(?:-[A-Za-z]+){1,}(?![A-Za-z-])

pattern explained here: Java regex patterns

which are the hyphened words like this: “aaa-bb”, “aaa-bb-cc”, “aaa-bb-c-dd”. SO, i can i do that?

  • 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-26T00:18:07+00:00Added an answer on May 26, 2026 at 12:18 am

    Unfortunately it seems like you can’t merge both expressions, at least as far as I know.

    However, maybe you can reformulate your problem.

    If, for example, you want to split between words (which can contain hyphens), try this expression:

    (?>[^\p{L}-]+|-[^\p{L}]+|^-|-$)
    

    This should match any sequence of non-letter characters that are not a minus or any minus that is followed my a non-letter character or that is the first or last character in the input.

    Using this expression for a split should result in this:

    input="aaa-bb, aaa-bb-cc, aaa-bb-c-dd,no--match,--foo"
    ouput={"aaa-bb","aaa-bb-cc","aaa-bb-c-dd","no","match","","foo"}
    

    The regex might need some additional optimization but it is a start.

    Edit: This expression should get rid of the empty string in the split:

    (?>[^\p{L}-][^\p{L}]*|-[^\p{L}]+|^-|-$)
    

    The first part would now read as “any non-character which is not a minus followed by any number of non-character characters” and should match .-- as well.

    Edit: in case you want to match words that could potentially contain hyphens, try this expression:

    (?>(?<=[^-\p{L}])|^)\p{L}+(?:-\p{L}+)*(?>(?=[^-\p{L}])|$)
    

    This means “any sequence of letters (\p{L}+) followed by any number of sequences consisting of one minus and at least one more letters ((?:-\p{L}+)*+). That sequence must be preceeded by either the start or anything not a letter or minus ((?>(?<=[^-\p{L}])|^)) and be followed by anything that is not a letter or minus or the end of the input ((?>(?=[^-\p{L}])|$))”.

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

Sidebar

Related Questions

Why can't you do this and is there are work around? You get this
So this seems pretty basic but I can't get it to work. I have
This sounds dumb, but I can't get it to work. I think i just
I am wondering where I can get this pattern in Xcode? Thanks!
I get this error: Can't locate Foo.pm in @INC Is there an easier way
I can get the element like this $(#txtEmail) but I'm not sure how to
We get this error in Visual Studio 2005 and TFS very often. Can anyone
This shouldn't be so hard but I just can't seem to get this to
Ok, if I have this right, my code can get cookies at a specific
I think this must be simple but I can't get it right... I have

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.