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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T15:39:17+00:00 2026-05-25T15:39:17+00:00

I have a Java program which is supposed to remove all non-letter characters from

  • 0

I have a Java program which is supposed to remove all non-letter characters from a string, except when they are a smiley face such as =) or =] or 😛

It’s very easy to match the opposite with [a-zA-Z ]|=\)|=\]|:P but I cannot figure out how to negate this expression. Since I am using the String.replaceAll() function it must be in the negated form.

I believe part of the issue may come from the fact that smiles are generally 2 characters long, and I am only matching 1 character at a time?

Interestingly, replaceAll("(?![Tt])[Oo]","") removes every occurrence of the letter O, even in the word “to.” Does this mean my replaceAll function does not understand regex lookahead? It doesn’t throw any errors…

I ended up using

replaceAll("(?<![=:;])[\\]\\[\\(\\)\\/]","")
.replaceAll("[=:;](?![\\]\\[\\(\\)o0OpPxX\\/])","")
.replaceAll("[^a-zA-Z=:;\\(\\)\\[\\]\\/ ]","")

which is extremely messy but works perfectly. The... quick! (brown) fox jump's over the[] lazy dog. :] =O ;X becomes THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG :] =O ;X

Edit: Ignore that fix, see the accepted answer below.

  • 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-25T15:39:17+00:00Added an answer on May 25, 2026 at 3:39 pm

    It should be pretty easy to due this using a negative lookahead. Basically the match will fail at any position where the regex inside of the (?!...) group matches. You should follow the negative lookahead with a single wildcard (.) to consume a character if the lookahead did not match (meaning that the next character is a non-letter character that is not part of a smiley face).

    edit: Clearly I hadn’t tested my original regex very thoroughly, you also need a negative lookbehind following the . to make sure that the character you consumed was not the second character in a smiley:

    (?![a-zA-Z ]|=\)|=\]|:P).(?<!=\)|=\]|:P)
    

    Note that you might be able to shorten the regex by using character classes for the eyes and the mouth, for example:

    [:=][\(\)\[\]]
      ^    ^-----mouth
      |--eyes
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have a Perl program to validate XML which is invoked from a Java
I have a Java program which is being started via ProcessBuilder from another Java
I have java program which receives encrypted message through TCP/IP from one component of
I have a tiny little program in Java which supposed to display 2 spheres.
I have a Java program in which an action is initiated which loops through
I currently have a small Java program which I would like to run both
I now have a running Java program which only lacks of the final step,that
How to write a java program which will tell me whether I have internet
I have a program which i have myself written in java, but I want
I have two strings in a java program, which I want to mix in

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.