Gambas Documentation
Aperçu du Langage
À traduire
Code Snippets
Comment faire ...
Compilation et installation
Composants
gb
gb.args
gb.cairo
gb.clipper
gb.complex
gb.compress
gb.crypt
gb.db
gb.db.form
gb.dbus
gb.debug
gb.desktop
gb.desktop.gnome.keyring
gb.eval
gb.eval.highlight
gb.form
gb.form.dialog
gb.form.editor
gb.form.mdi
gb.gmp
gb.gsl
gb.gtk
gb.gtk3
gb.gui
gb.image
gb.image.effect
gb.image.imlib
gb.image.io
gb.inotify
gb.libxml
gb.media
gb.mysql
gb.net
gb.net.curl
gb.net.smtp
gb.openal
gb.opengl
gb.opengl.glsl
gb.opengl.glu
gb.opengl.sge
gb.option
gb.pcre
.Regexp.Submatch
.Regexp.Submatches
RegExp
_new
Anchored
BadMagic
BadOption
BadUTF8
BadUTF8Offset
Callout
Caseless
Compile
DollarEndOnly
DotAll
Exec
Extended
Extra
MatchLimit
MultiLine
NoAutoCapture
NoMatch
NoMemory
NoSubstring
NotBOL
NotEmpty
NotEOL
NoUTF8Check
Null
Offset
Pattern
Subject
SubMatches
Text
Ungreedy
UnknownNode
UTF8
gb.pdf
gb.qt4
gb.qt4.ext
gb.qt4.opengl
gb.qt4.webkit
gb.qt5
gb.qt5.opengl
gb.report
gb.scanner
gb.sdl
gb.sdl.sound
gb.settings
gb.signal
gb.util
gb.util.web
gb.v4l
gb.vb
gb.web
gb.web.feed
gb.xml
gb.xml.html
gb.xml.rpc
gb.xml.xslt
Controls pictures
Derniers changements
Dépôt d'applications
Documentation de l'Environnement de développement
Documentation des développeurs
Documents
Indenter
Index de tous les Documents
Index du langage
Lexique
LISEZ-MOI
Manuel du wiki
Messages d'erreur
Tutoriels
Wiki License

RegExp.Replace (gb.pcre)

Static Function Replace ( Subject As String, Pattern As String, Replace As String [ , CompileOptions As Integer, ExecOptions As Integer ] ) As String

Depuis 3.5

Find all occurences of the specified Pattern in the Subject, and return a string where they are all replaced by the Replace string.

If the Pattern has submatches, then they can be substituted in the Replace string, by using the same syntax as the Subst$ function: &1 is replaced by the first submatch, &2 by the second, and so on.

The pattern is always compiled by default with the Ungreedy compile flag set, i.e. the greediness of all quantifiers is inverted. In particular the "+" and "*" quantifiers are ungreedy.

Depuis 3.9.3

You can turn this behavior off by setting the RegExp.Greedy flag in CompileOptions.

Because the greediness of quantifiers is reversed by default, it is advisable not to confuse your future self and to avoid ungreedy versions of quantifiers, i.e. "+?" and "*?", if possible. Set the RegExp.Greedy flag instead.

Examples

Print RegExp.Replace("How much wood would a woodchuck chuck if a woodchuck could chuck wood ?", "(chuck|wood)", "[&1 norris]")
How much [wood norris] would a [wood norris][chuck norris] [chuck norris] if a [wood norris][chuck norris] could [chuck norris] [wood norris] ?

See also