TagScript
classes
Replaceparser

Class: ReplaceParser

The replace tag will replace specific characters in a string. The parameter should split by a ,, containing the characters to find before the command and the replacements after.

Example

{replace(o,i):welcome to the server}
# welcime ti the server
{replace(1,6):{args}}
# if {args} is 1637812
# 6637862
{replace(, ):Test}
# T e s t

Extends

Implements

Constructors

new ReplaceParser()

new ReplaceParser(): ReplaceParser

Returns

ReplaceParser

Overrides

BaseParser.constructor

Source

lib/Parsers/Replace.ts:23

Properties

acceptedNames

protected acceptedNames: string[]

Inherited from

BaseParser.acceptedNames

Source

lib/Parsers/Base.ts:8


requiredParameter

protected requiredParameter: boolean

Inherited from

BaseParser.requiredParameter

Source

lib/Parsers/Base.ts:10


requiredPayload

protected requiredPayload: boolean

Inherited from

BaseParser.requiredPayload

Source

lib/Parsers/Base.ts:12

Methods

parse()

parse(ctx): string

Parameters

ctx: Context

Returns

string

Implementation of

IParser.parse

Source

lib/Parsers/Replace.ts:27


toJSON()

toJSON(): object

Returns

object

acceptedNames

acceptedNames: string[]

requiredParameter

requiredParameter: boolean

requiredPayload

requiredPayload: boolean

Inherited from

BaseParser.toJSON

Source

lib/Parsers/Base.ts:29


willAccept()

willAccept(ctx): boolean

Parameters

ctx: Context

Returns

boolean

Implementation of

IParser.willAccept

Inherited from

BaseParser.willAccept

Source

lib/Parsers/Base.ts:20