Replaces the chars of the object in the of the object with the given chars.
The replacement succeeds if the opening characters exist at the beginning of the text.
wrapper.class.ts
public textReplaceOpening(opening: string): string {
return Wrapper.replaceOpening(this.text, this.opening, opening);
}
Parameters
opening: string
The opening chars of to replace in the (part of the primitive value).
Returns
The return value is the of type with replaced chars.
Example usage
// Example usage.
import { Wrapper } from '@angular-package/wrapper';
const longText = new Wrapper('{', '}', '{This is a long text}');
// Returns {{This is a long text}}.
longText.valueOf();
// Returns This is a long text}.
longText.textReplaceOpening('');
// Returns {{This is a long text}.
longText.textReplaceOpening('{{');