Member Junction
    Preparing search index...

    Configuration for regex-based string transformation

    interface RegexConfig {
        Flags?: string;
        Pattern: string;
        Replacement: string;
    }
    Index

    Properties

    Flags?: string

    Regex flags (e.g., 'gi' for global, case-insensitive)

    Pattern: string

    Regular expression pattern to match

    Replacement: string

    Replacement string (supports $1, $2, etc. for capture groups)