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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T20:34:40+00:00 2026-05-24T20:34:40+00:00

I have this line of code to remove some punctuation: str.replaceAll([\\-\\!\\?\\.\\,\\;\\:\\\\\’], ); I don’t

  • 0

I have this line of code to remove some punctuation:

str.replaceAll("[\\-\\!\\?\\.\\,\\;\\:\\\"\\']", "");

I don’t know if all the chars in this regex need to be escaped, but I escaped only for safety.

Is there some way to build a regex like this in a more clear way?

  • 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-24T20:34:40+00:00Added an answer on May 24, 2026 at 8:34 pm

    Inside […] you don’t need to escape the characters. [.] for instance wouldn’t make sense anyway!

    The exceptions to the rule are

    • ] since it would close the whole [...] expression prematurely.
    • ^ if it is the first character, since [^abc] matches everything except abc.
    • - unless it’s the first/last character, since [a-z] matches all characters between a to z.

    Thus, you could write

    str.replaceAll("[-!?.,;:\"']", "")
    

    To quote a string into a regular expression, you could also use Pattern.quote which escapes the characters in the string as necessary.

    Demo:

    String str = "abc-!?.,;:\"'def";
    System.out.println(str.replaceAll("[-!?.,;:\"']", "")); // prints abcdef
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have this line of code for page load: if ($(input).is(':checked')) { and it
Say I have this line of code in the view. <?php echo CHtml::activeTextField($model,'start_time'); ?>
Sorry, I'm new to flash I have this line of code: BaseEntry( _entryList[i] ).topTeamName
I have this code in my controller and want to test this code line
I have a this line of code: var predicate = Expression.Lambda<Func<TEntityType, bool>>(body, param); where
I have a greasemonkey user script with this single line of code... window.close(); but
I have 1 compiler error. It is from this line in my code: cout
Hey I have this code right here: http://pastie.org/534470 And on line 109 I get
I have used this code for extracting urls from web page.But in the line
I have this bit of code to do some testing before I implement it.

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.