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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T19:09:18+00:00 2026-05-31T19:09:18+00:00

So we have a database column that can contain just about anything. Unicode, numbers,

  • 0

So we have a database column that can contain just about anything. Unicode, numbers, words, etc.

However, we need to send that data to an external service and they are very strict on what they will accept. Basically, English only, words, numbers, etc.

We can’t change the requirement to this service so we need to filter what the users send us before we send to them.

My RegEx skills are weak. Here is what we need:

Characters [a-zA-Z]
Numbers [0-9]
The following symbols: !@#$%^&*()-_=+;:’,./?\

And that’s it. Of course, it can be in any combination. We just want to make sure nothing slips by that isn’t listed there.

Any help on how to construct this filter in Java would be greatly appreciated.

BTW, I’m assuming the same RegEx pattern would work for JavaScript?

EDIT

This is the example I have (using Edmastermind29):

public static void main(String[] args) {

    String pattern = "^[A-Za-z0-9!@#$%^&*()-_=+;:',./?\\]";
    String text = "Hello, I need everything in this string except the { or }";

    Pattern p = Pattern.compile(pattern);
    Matcher m = p.matcher(text);

    // here, I need everything but the {}.
    // so I should have:  Hello, I need everything in this string except the  or 

}

OK, I figured out how to escape that string. But how do I get everything that isn’t filtered out?

  • 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-31T19:09:19+00:00Added an answer on May 31, 2026 at 7:09 pm

    You need to iterate of each matching subsequence and concatenate the strings.
    With the given example the solution would look like this:

    public static void main( String[] args ) {
      String pattern = "[A-Za-z0-9!@#$%^&*()-_=+;:',./?\\ ]*";
      String text = "Hello, I need everything in this string except the { or }";
    
      Pattern p = Pattern.compile( pattern );
      Matcher m = p.matcher( text );
      StringBuilder sb = new StringBuilder();
      while( m.find() )
      {
         sb.append( m.group() );
      }
      String result = sb.toString();
      System.out.println( "Result: '" + result + "'" );
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a VARCHAR column in a SQL Server 2000 database that can contain
I have several database tables that just contain a single column and very few
I have a database column that contains the contents of a file. I'm converting
I have a database column WantsReply that logically holds a boolean (bit) but is
Suppose I have a database table that has a timedate column of the last
I have a column in my database that is typed double and I want
I have a column in my SQL-2005 database that used to be a varchar(max)
I have a SQL Server 2000 database that will not display the column list
I have a user table in my mysql database that has a password column.
I currently have a Postgres 8.4 database that contains a varchar(10000) column. I'd 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.