![]() |
Type in a command, or "ls dictionary" to search all commands for "dictionary", etc.
|
NAME
strReplace - replace all instances of a character or string found within another string
SYNOPSIS
strReplace -find [TEXT TO FIND] -replace [TEXT TO SUBSITUTE IN] -string [STRING TO BE SEARCHED]
EXAMPLES
strReplace -find pizza -replace hot dogs -string I like pizza. (returns: I like hot dogs.)
strReplace -find a -replace o -string Banana Camera (returns: Bonono Camero)
DESCRIPTION
Replaces all instances of a string or character with another string or character, and
returns the resulting string. This command IS case sensitive.
A solitary space character can be indicated in -find or -replace by using either " " or %20.
AUTHOR
Allen Ormond <aormond (at) fromrocks (dot) com>