org.jtools.common.utils
Class StringUtils

java.lang.Object
  extended byorg.jtools.common.utils.StringUtils

public class StringUtils
extends java.lang.Object

String class that has useful string manipulation utilities

Since:
0.1
Version:
$Id: StringUtils.java,v 1.1 2002/08/01 22:40:33 placson Exp $
Author:
Patrick Lacson (patrick@lacson.org)

Constructor Summary
StringUtils()
           
 
Method Summary
static java.lang.String replace(java.lang.String input, java.lang.String lookFor, java.lang.String repWith)
          Simple search and replace
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

StringUtils

public StringUtils()
Method Detail

replace

public static java.lang.String replace(java.lang.String input,
                                       java.lang.String lookFor,
                                       java.lang.String repWith)
Simple search and replace

Parameters:
input - String input
lookFor - string to find
repWith - string value to replace target
Returns:
The new string with the replaced targets