Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Page properties
hiddentrue



Status
Tech review

Status
colourYellow
titleReady for review

Style guide

Status
colourYellow
titleReady for review

Status
titletodo
Status
colourYellow
titleReady for review
Status
colourGreen
titledone
Status
colourRed
titleflagged



Page properties
hiddentrue


Short description

Replaces all substrings sub-strings matching a regular expression with a given replacement.

Output

Status
subtletrue
titletext

Available since

Status
subtletrue
colourBlue
titleneeds lookup




UI Text Box
sizemedium
typeinfo

This function replaces all substrings sub-strings matching the given regular expression with a given replacement.


Code Block
languagebash
titleSyntax
linenumberstrue
replaceAll(text, regexp, replacement) #Output: Text


UI Expand
titleExamples


Parser expressionDescription


Code Block
languagebash
linenumberstrue
replaceAll(" Hello World ", "\\s", "")


This example returns "HelloWorld".



UI Expand
titleAdditional information

Parameters used in this function

ParameterInput (data type)Description
text

Status
subtletrue
titletext

Any given text.
regexp

Status
subtletrue
titletext

A valid regeular expression that grabs all substrings to be replaced.
replacement

Status
subtletrue
titleanytext

This text will replace all substrings found by the regexp.



UI Expand
titleOutput

This function returns a

Status
subtletrue
titletext

UI Text Box
typetip

This expression could be used to e.g. modify an issue's summary or description.



UI Text Box
typetip

If you want to replace only the first matching occurrence, have a look at the replaceFirst() function.

replaceFirst("Hello World", "l", "_")replaceAll("Hello World", "l", "_")
"He_lo World""He__o World"



If you don't want to use a regular expression, have a look at the findReplaceAll() function.