@abaplint/runtime
Version:
Transpiler - Runtime
15 lines (14 loc) • 479 B
TypeScript
import { Table } from "../types";
import { ICharacter } from "../types/_character";
import { INumeric } from "../types/_numeric";
import { IRegexOptions } from "./find";
export type replaceInput = IRegexOptions & {
target: ICharacter | Table;
sectionLength?: INumeric;
sectionOffset?: INumeric;
replacementLength?: INumeric;
replacementCount?: INumeric;
with: ICharacter;
of: ICharacter;
};
export declare function replace(input: replaceInput): void;