textReplaceClosing()

Wrapper.prototype.textReplaceClosing()

Replaces the closing chars of the Wrapper object in the text of the Wrapper object with the given closing chars.

The replacement succeeds if the closing characters exist at the end of the text.

wrapper.class.ts
public textReplaceClosing(closing: string): string {
  return Wrapper.replaceClosing(this.text, this.closing, closing);
}

Parameters

closing: string

The closing chars of string to replace in the text(part of the primitive value).

Returns

The return value is the text of string type with replaced closing 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.textReplaceClosing('');

// Returns {This is a long text}}.
longText.textReplaceClosing('}}');

Last updated