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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T02:13:31+00:00 2026-05-11T02:13:31+00:00

Given a string with replacement keys in it, how can I most efficiently replace

  • 0

Given a string with replacement keys in it, how can I most efficiently replace these keys with runtime values, using Java? I need to do this often, fast, and on reasonably long strings (say, on average, 1-2kb). The form of the keys is my choice, since I’m providing the templates here too.

Here’s an example (please don’t get hung up on it being XML; I want to do this, if possible, cheaper than using XSL or DOM operations). I’d want to replace all @[^@]*?@ patterns in this with property values from bean properties, true Property properties, and some other sources. The key here is fast. Any ideas?

<?xml version='1.0' encoding='utf-8'?>  <envelope version='2.3'>    <delivery_instructions>      <delivery_channel>       <channel_type>@CHANNEL_TYPE@</channel_type>     </delivery_channel>      <delivery_envelope>       <chan_delivery_envelope>     <queue_name>@ADDRESS@</queue_name>       </chan_delivery_envelope>     </delivery_envelope>    </delivery_instructions>    <composition_instructions>     <mime_part content_type='application/xml'>       <content><external_uri>@URI@</external_uri></content>     </mime_part>   </composition_instructions>  </envelope> 

The naive implementation is to use String.replaceAll() but I can’t help but think that’s less than ideal. If I can avoid adding new third-party dependencies, so much the better.

  • 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. 2026-05-11T02:13:31+00:00Added an answer on May 11, 2026 at 2:13 am

    The appendReplacement method in Matcher looks like it might be useful, although I can’t vouch for its speed.

    Here’s the sample code from the Javadoc:

    Pattern p = Pattern.compile('cat'); Matcher m = p.matcher('one cat two cats in the yard'); StringBuffer sb = new StringBuffer(); while (m.find()) {     m.appendReplacement(sb, 'dog'); } m.appendTail(sb); System.out.println(sb.toString()); 

    EDIT: If this is as complicated as it gets, you could probably implement your own state machine fairly easily. You’d pretty much be doing what appendReplacement is already doing, although a specialized implementation might be faster.

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

Sidebar

Ask A Question

Stats

  • Questions 63k
  • Answers 63k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • added an answer The wiki of Ogre3D provides a list of networking libraries… May 11, 2026 at 10:32 am
  • added an answer I'm no Zend expert, but I guess you could subclass… May 11, 2026 at 10:32 am
  • added an answer No problem. We have an up-/downloads site at work so… May 11, 2026 at 10:32 am

Related Questions

Given a string with replacement keys in it, how can I most efficiently replace
Given a string with a module name, how do you import everything in the
Question Using XSLT 1.0, given a string with arbitrary characters how can I get
Given a string like this: a,string, with,various,values, and some,quoted What is a good algorithm
How can I drop all tables whose names begin with a given string? I
Given a string file path such as /foo/fizzbuzz.bar , how would I use bash
given a string: msg=hello world How can I define this as a ctypes.c_void_p() data
Given a string as below, I need to convert: 1 Dec 2008 06:43:00 +0100
I need to query a table for values given a string. The table is
I have a string. I need to replace all instances of a given array

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.