@abaplint/runtime
Version:
Transpiler - Runtime
14 lines (13 loc) • 422 B
TypeScript
import { ICharacter } from "../types/_character";
import { INumeric } from "../types/_numeric";
import { String } from "../types/string";
export interface IReplaceInput {
val: string | ICharacter;
sub?: string | ICharacter;
with?: string | ICharacter;
regex?: string | ICharacter;
off?: INumeric;
len?: INumeric;
occ?: INumeric;
}
export declare function replace(input: IReplaceInput): String;