Project

General

Profile

Actions

$reptokcs » History » Revision 1

Revision 1/3 | Next »
Per Amundsen, 08/10/2015 06:08 AM


Added in 1.9.0

$reptokcs(text,token,new,N,C)

Replaces the Nth matching token in text with a new token.

$reptokcs is case-sensitive, see $reptok for case-insensitive version.

Parameters

text - The text to tokenize.
token - Token to match.
new - New token to replace with.
N - If N = 0, all matching tokens, otherwise the Nth match.
C - The ASCII value to tokenize by.

Example

; Replace the first token matching 'B' with 'E'
//echo -ag $reptokcs(a.B.b.c.d,B,E,1,46)

; Replace all tokens matching 'B' with 'e'
//echo -ag $reptokcs(B.B.B.b,B,e,0,46)

Updated by Per Amundsen over 8 years ago · 1 revisions

Also available in: PDF HTML TXT