Interface FstrReplace

Returns the string (argument[0]) with the pattern (argument[1]) replaced with the given replacement (argument[2]) text. If the global argument (argument[3]) is true then all occurrences of the pattern will be replaced, otherwise only the first. For the full syntax of the pattern specification see the Java Pattern class javadocs

interface FstrReplace {
    args: [string | GeoStylerStringFunction, string | GeoStylerStringFunction, string | GeoStylerStringFunction, Expression<boolean>];
    name: "strReplace";
}

Hierarchy (view full)

Properties

Properties

name: "strReplace"