Regex.replaced.3kaya

Langue: en

Version: May 2010 (fedora - 01/12/10)

Section: 3 (Bibliothèques de fonctions)

NAME

Regex::replaced - Replace a compiled pattern with a string.

SYNOPSIS

String replaced( Regex keyre, String new, String str, [ReplaceFlags] fl=createArray(1) )

ARGUMENTS

keyre A compiled regular expression

new The string to replace matches with

str The string to search for matches.

fl A list of Regex.ReplaceFlags(3kaya) options. This parameter may be omitted and defaults to the empty list.

DESCRIPTION

Replace the first match (or all matches if fl contains Global ) of key with new in the String str

new may contain back references into the pattern, $1, $2, etc, which stand for sub-matches. Returns a new string.

str may be a Tainted string. This function will return an untainted string

AUTHORS

Kaya standard library by Edwin Brady, Chris Morris and others (kaya@kayalang.org). For further information see http://kayalang.org/

LICENSE

The Kaya standard library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License (version 2.1 or any later version) as published by the Free Software Foundation.

Regex.compile(3kaya)

Regex.replace_1(3kaya)

Builtins.Tainted(3kaya)