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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T00:41:19+00:00 2026-05-20T00:41:19+00:00

I am banging my head against this regular expression the whole day. The task

  • 0

I am banging my head against this regular expression the whole day.

The task looks simple, I have a number of XML tag names and I must replace (mask) their content.

For example

<Exony_Credit_Card_ID>242394798</Exony_Credit_Card_ID>

Must become

<Exony_Credit_Card_ID>filtered</Exony_Credit_Card_ID>

There are multiple such tags with different names

How do I match any text inside but without matching the tag itself?

EDIT: I should clarify again. Grouping and then using the group to avoid replacing the text inside does not work in my case, because when I add the other tags to the expression, the group number is different for the subsequent matches. For example:

"(<Exony_Credit_Card_ID>).+(</Exony_Credit_Card_ID>)|(<Billing_Postcode>).+(</Billing_Postcode>)"

replaceAll with the string "$1filtered$2" does not work because when the regex matches Billing_Postcode its groups are 3 and 4 instead of 1 and 2

  • 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-20T00:41:20+00:00Added an answer on May 20, 2026 at 12:41 am
    String resultString = subjectString.replaceAll(
        "(?x)    # (multiline regex): Match...\n" +
        "<(Exony_Credit_Card_ID|Billing_Postcode)> # one of these opening tags\n" +
        "[^<>]*  # Match whatever is contained within\n" +
        "</\\1>  # Match corresponding closing tag",
        "<$1>filtered</$1>");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been banging my head on this one all day. The C++ project
I'm banging my head against a wall with a regular expression. I'm trying to
Been banging my head against this all morning. Basically, I have a listbox, and
I have been banging my head against this for a little while now. I
I have been banging my head against this for some time now: I want
I've been banging my head against this for a week. I have a page
I've been banging my head against the wall on this one. I have a
I've been banging my head against for wall for a while with this one.
This is to all the C# gurus. I have been banging my head on
Banging my head against this one for a long time. On Rails 2.3.2, Ruby

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.