replaceClosingIn()

Wrapper.prototype.replaceClosingIn()

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

circle-info

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

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

Parameters

text: string

The text of stringarrow-up-right type in which the closing chars are replaced by given replacement value.

replaceValue: string

The value of stringarrow-up-right type as a replacement for the closing chars at the end of the given text.

Returns

The return value is the given text of stringarrow-up-right type with replaced closing chars by given replacement value.

Example usage

Last updated