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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T10:15:26+00:00 2026-06-15T10:15:26+00:00

I want to split a String into a String array along non-alphabetic characters. For

  • 0

I want to split a String into a String array along non-alphabetic characters. For example:

"Here is an ex@mple" => "Here", "is", "an" "ex", "mple"

I tried using the String.split(String regex) method with the regular expression "(?![\\p{Alpha}])". However this splits the string into

"Here", "_is", "_an", "_ex", "@ample"

(those underscores are to emphasize there is a space). I guess this is because the ?! regex operator is “zero-width” and is actually splitting on and removing a zero-width character preceding the non-alphabetic characters in the input string.

How can I accomplish removal of the actual non-alpha characters while I split the string? Is there a NON-zero-width negation operator?

  • 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-15T10:15:27+00:00Added an answer on June 15, 2026 at 10:15 am

    You could try \P{Alpha}+:

    "Here is an ex@mple".split("\\P{Alpha}+")
    
    ["Here", "is", "an", "ex", "mple"]
    

    \P{Alpha} matches any non-alphabetic character (as opposed to \p{Alpha}, which matches any alphabetic character). + indicates that we should split on any continuous string of such characters. For example:

    "a!@#$%^&*b".split("\\P{Alpha}+")
    
    ["a", "b"]
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to split a string with all non-alphabetic characters as delimiters. For example,
I want to split a string into an array using space and the comma
I want to split a string in Javascript using split function into 2 parts.
What I'm looking to do is split data from string into an array. Here's
I want to split a string into an array. The string is as follows:
I want to split a string into a list or array. Input: green,yellow,green,white,orange,blue,black The
I've got a string and want to split it into an array. I'm not
i'm trying to use php to split a string into array components using either
I want to split a string like My dog into an array of: |
Making an argument parser. I want to split a string into an array where

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.