replace-string
This parser helps you replace a part or the whole name of your collections, groups and tokens from your SDTF token tree.
Interface
Options
all
false
Select all collections, groups and tokens in your SDTF token graph.
group
false
Select all groups in your SDTF token graph.
collection
false
Select all collections in your SDTF token graph.
token
false
Select all tokens in your SDTF token graph.
regex
required
object | string
If string: the parameter used for the constructor of the regex. If your use case need to use flags prefer object notation.
regex.flags
false
string
The flags to use for regex. In the regex constructor it's the second argument constructor of the regex.
replaceBy
required
string
The value will used as replacement. This method is used to apply the replacement.
trim
false
boolean
false
Set true to remove spaces before and after the transformed values. This method is used to trim.
applyTo
false
The selection where to apply the transformation.
collection
, group
, token
take a Regex string or true
to select anything of the kind.
An SDTFQuery
can be used for advance use cases.
Basic usage: Rename design token by keeping only characters present after the last slash character (/
).
/
).Last updated