Versions Compared

Key

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

...

Code Block
titleOutput
1024,23;5


replace

{{replace "String to search in" "searchFor" "replaceWith"}}

Example

Code Block
//use
{{replace "Hallo Lobaro welcome to the Internet" "Lobaro" "oraboL"}}
output: "Hallo oraboL welcome to the Internet" 

//for a data field in json object
{{replace data.value  "wmbusapp-" ""}}

//object to apply:
{
  "data": {
    "value": "wmbusapp-v101"
  }
}

//output
"v101"


Math

Mathematical operations.

...