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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T23:07:44+00:00 2026-05-13T23:07:44+00:00

Sorry if this has been asked, my search brought up many off topic posts.

  • 0

Sorry if this has been asked, my search brought up many off topic posts.

I’m trying to convert wildcards from a user defined search string (wildcard is “*”) to PostgreSQL like wildcard “%”.

I’d like to handle escaping so that "%" => "\%" and "\*" => "*"

I know I could replace \* with something else prior to replacing * and then swap it back, but I’d prefer not to and instead only convert * using a pattern that selects it when not proceeded by \.

String convertWildcard(String like)
{
    like = like.replaceAll("%", "\\%");
    like = like.replaceAll("\\*", "%");
    return like;
}

Assert.assertEquals("%", convertWildcard("*"));
Assert.assertEquals("\\%", convertWildcard("%"));
Assert.assertEquals("*", convertWildcard("\\*")); // FAIL

Assert.assertEquals("a%b", convertWildcard("a*b"));
Assert.assertEquals("a\\%b", convertWildcard("a%b"));
Assert.assertEquals("a*b", convertWildcard("a\\*b")); // FAIL

Ideas welcome.

EDIT

To clarify,

I want a method that makes 1 or more String.replaceAll calls to convert a string so that

  • occurrences of % become \%,
  • occurrences of * become % and
  • occurrences of \* become *.

The best answer will use the least calls to String.replaceAll.

  • 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-13T23:07:44+00:00Added an answer on May 13, 2026 at 11:07 pm

    You need what is called “Negative Lookbehind”. To select all % not preceded by \:

    (?<!\\)% (pure regex expression)

    to use it in Java you need to add some masking:

    string.replaceAll("(?<!\\\\)%", "*");

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

Sidebar

Related Questions

(I’m sorry if this has been asked before; the search feature seems to be
Sorry if this has been asked already, I've did a google search and couldn't
Sorry if this question has been asked before. On my search through SO I
Sorry If this has been asked before, but when you search for something on
I'm sorry if this has been asked before, I tried many combinations of keywords
I'm sorry if this has been asked before, I tried to search and didn't
Sorry, if this has been asked and answered here, simple search didn't give me
Ok, first off I'm sorry if this has been asked before. I couldn't find
Sorry if this has been asked before, but I couldn't find a good example
Sorry if this has been asked before, but I'm wondering what the best memory

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.