UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

7 lines (6 loc) 259 B
/** * @param Returns a string resulting from replacing all the occurrences of pattern in target by repstr * @param replaceString * @return string */ export declare const replaceRegExp: (target: string, pattern: string | RegExp, repstr: string) => string;