× The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.


  • Subject: RE: Web apps on the AS/400
  • From: "Stone, Brad V (TC)" <bvstone@xxxxxxxxxxxxxx>
  • Date: Mon, 19 Mar 2001 15:18:48 -0600

I'm sorry, I missed the two string problem in previous threads.  What was
it?  If it's replacing characters.. how about this (what I use now):

public final class MultiReplace
{
  public static String replace(String orig, String from, String to)
  {
    int start = orig.indexOf (from);

    if (start==-1)
      return orig;

    int lf = from.length();

    char [] origChars = orig.toCharArray();

    StringBuffer buffer = new StringBuffer();

    int copyFrom=0;

    while (start != -1)
    {
      buffer.append (origChars, copyFrom, start-copyFrom);
      buffer.append (to);
      copyFrom=start+lf;
      start = orig.indexOf (from, copyFrom);
    }
    buffer.append (origChars, copyFrom, origChars.length-copyFrom);

    return buffer.toString();
  }
}

In use:
string = MultiReplace.replace(string, " ", "_");


> -----Original Message-----
> From: Leif Svalgaard [mailto:leif@leif.org]
> Sent: Monday, March 19, 2001 12:55 PM
> To: MIDRANGE-L@midrange.com
> Subject: Re: Web apps on the AS/400
> 
> 
> >
> > Now, on the other end, I think I see Leif's point.  and he 
> is right to a
> > point.  You do have to do a lot of little things to get one 
> thing that does
> > a whole buncha stuff in one line.  But the advantage is, if 
> designed right,
> > it can be used over and over and over in other 
> applications.  The same
> holds
> > true for a very nicely designed ILE system as well, for the 
> most part.
> >
> 
> Brad, with your newfound knowledge why don't you take a stab at the
> two string problems in Java?
> Leif
> 
> 
> +---
> | This is the Midrange System Mailing List!
> | To submit a new message, send your mail to MIDRANGE-L@midrange.com.
> | To subscribe to this list send email to MIDRANGE-L-SUB@midrange.com.
> | To unsubscribe from this list send email to 
> MIDRANGE-L-UNSUB@midrange.com.
> | Questions should be directed to the list owner/operator: 
> david@midrange.com
> +---
> 
+---
| This is the Midrange System Mailing List!
| To submit a new message, send your mail to MIDRANGE-L@midrange.com.
| To subscribe to this list send email to MIDRANGE-L-SUB@midrange.com.
| To unsubscribe from this list send email to MIDRANGE-L-UNSUB@midrange.com.
| Questions should be directed to the list owner/operator: david@midrange.com
+---

As an Amazon Associate we earn from qualifying purchases.

This thread ...

Follow-Ups:

Follow On AppleNews
Return to Archive home page | Return to MIDRANGE.COM home page

This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].

Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.