Initial import of the ircii-pana-1.1-final source tree.

git-svn-id: svn://svn.code.sf.net/p/bitchx/code/tags/ircii-pana-1.1-final@1 13b04d17-f746-0410-82c6-800466cd88b0
This commit is contained in:
Kevin Easton
2008-02-25 09:25:32 +00:00
commit 28febcfea9
1429 changed files with 250653 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
Synopsis:
$sar([i][g][r]/<search>/<replace>/<text>)
Technical:
This function searches for the given search string in the given text, and
replaces if with the replacement text, if a match is found. The field
delimiter may be any character; the first character found that is not a
'g' or 'r' is used.
Practical:
This is the general purpose search-and-replace function. It allows you
to look for any arbitrary text substring in any text string, and replace
it with another arbitrary substring. Any of the strings may consist of
variables to expand at runtime.
Returns:
resultant string
Options:
i do case-insensitive searches
g replace all matches, not just the first
r assume text is a variable name; assign return value to variable
Examples:
@ foo = [foobarblah]
$sar(/oo/ee/booyamon) returns "beeyamon"
$sar(/oo/ee/foofoo) returns "feefoo"
$sar(g/oo/ee/foofoo) returns "feefee"
$sar(r/oo/ee/foo) returns and sets $foo to "feebarblah"
See Also:
tr(6); msar(6)