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
interface parser {
name: 'replace-string';
options: ({
all?: string | {
regex: string | { pattern: string, flags?: 'g' & 'm' & 'i' },
replaceBy: string
}
} |
{
group?: string | {
regex: string | { pattern: string, flags?: 'g' & 'm' & 'i' },
replaceBy: string
};
collection?: string | {
regex: string | { pattern: string, flags?: 'g' & 'm' & 'i' },
replaceBy: string
};
token?: string | {
regex: string | { pattern: string, flags?: 'g' & 'm' & 'i' },
replaceBy: string
}
}) & { applyTo?: SDTFQuery }
}Options
Parameter
Required
Type
Default
Description
Basic usage: Rename design token by keeping only characters present after the last slash character (/).
/).Last updated
Was this helpful?