geostyler-style
    Preparing search index...

    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 Summary)

    Index

    Properties

    Properties

    args: [
        string
        | GeoStylerStringFunction,
        string | GeoStylerStringFunction,
        string | GeoStylerStringFunction,
        Expression<boolean>,
    ]
    name: "strReplace"