-
Notifications
You must be signed in to change notification settings - Fork 19
/
EnDeText.js
419 lines (403 loc) · 24.9 KB
/
EnDeText.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
/* ========================================================================= //
# vi: set ts=4:
# vim: set ts=4:
#?
#? NAME
#? EnDeText.js
#?
#? SYNOPSIS
#? <SCRIPT language="JavaScript1.3" type="text/javascript" src="EnDe.js"></SCRIPT>
#? <SCRIPT language="JavaScript1.3" type="text/javascript" src="EnDeText.js"></SCRIPT>
#?
#? DESCRIPTION
#? This file contains functiosn/methods used general text manipulations.
#? It defines the EnDe.Text object with following functions:
#? dprinit() - initilize tracing
#? dispatch() - manipulate text accoding given mode
#? modes are:
#? txtNULL : set text tu NULL
#? txtClear : clear text (empty string)
#? txtUC : uppercase: convert [a-z] to [A-Z]
#? txtLC : lowercase: convert [A-Z] to [a-z]
#? txtAPP00 : add \0 at end of text
#? txtAPPnl : add \n at end of text
#? txtAPPcr : add \r at end of text
#? txtAPPht : add \t at end of text
#? txtAPPvt : add \v at end of text
#? txtAPPsp : add space at end of text
#? txtDEL00 : delete \0 anywhere in text
#? txtDELnl : delete \n anywhere in text
#? txtDELcr : delete \r anywhere in text
#? txtDELht : delete \t anywhere in text
#? txtDELvt : delete \v anywhere in text
#? txtDELsp : delete space anywhere in text
#? txtDELsq : delete ' anywhere in text
#? txtDELdq : delete " anywhere in text
#? txtDELquote : delete " and ' anywhere in text
#? txtDELbsnl : delete all \ followed by \n
#? txtDELspbs : delete all space followed by \
#? txtDELbsn : delete all literal \n
#? txtDELbsr : delete all literal \r
#? txtDELbssq : delete all literal \'
#? txtDELbsdq : delete all literal \"
#? txtDELbssl : delete all literal \/
#? txtDELbsany : delete all literal \(character) anywhere
#? txtDELnon7b : delete all non-printable chars anywhere in text
#? txtDELnon7bn: delete non-printable chars (except \t \n) anywhere in text
#? txtDELnon128: delete characters outside range [1..127] anywhere in text
#? txtDELnon256: delete characters outside range [1..255] anywhere in text
#? txtDELalnum : delete all non-alhpanumeric characters
#? txtDELwhite : delete all white space characters (space,\t, \r, \n) anywhere
# ? txtDELascii : delete all non-printable characters
#? txtDELsgml : delete all < > </ /> <!
#? txtDELmixed : delete \t \r \n + " and space anywhere in text
#? txtDELfffx : delete all characters in range [fff0..ffff] anywhere in text
#? txtINS00 : insert \0 at given position in text
#? txtINSnl : insert \n at given position in text
#? txtINScr : insert \r at given position in text
#? txtINSht : insert \t at given position in text
#? txtINSvt : insert \v at given position in text
#? txtINSUCS* : insert special Unicode sequencet at given position in text
#? txtREPplus : replace all + by space
#? txtREPplus20 : replace all + by %20
#? txtREPspace : replace all space by +
#? txtREPspace20 : replace all space by %20
#? txtREP20plus : replace all %20 by +
#? txtREP20space : replace all %20 by space
#? txtREPdouble: replace (duplicate) \ by \\ anywhere in text
#? txtREPreduce: replace (redeuce) \\ by \ anywhere in text
#? txtREPalnum : replace all non-alhpanumeric characters by spaces
#? txtREPurl : replace all non-printable chars by their %hex value
#? txtREPascii : replace all non-printable chars by their %hex value
#? txtREPbar : replace | by \n anywhere in text
#? txtREPrab : replace \n by | anywhere in text
#? txtREPsgml : replace all < > </ /> <! by a single space
#? txtREPsqdq : replace all ' by "
#? txtREPsqdq : replace all " by '
#? txtREPsqbt : replace all ' by `
#? txtREPqqqq : replace ' by " and " by ' anywhere in text, honor \-escaped quotes
#? txtREPbsn : replace all literal \n by \n
#? txtREPbsr : replace all literal \r by \r
#? txtREPbst : replace all literal \t by \t
#? txtREPbssq : replace all literal \' by '
#? txtREPbsdq : replace all literal \" by "
#? txtREPbssl : replace all literal \/ by /
#? txtREPbsany : replace all literal \(character) by (character)
#? txtREPbsn : replace all literal \n by \n
#? txtREPbsn : replace all literal \n by \n
#? txtREPbsn : replace all literal \n by \n
#? txtREPpercent: replace all %% by %
#? txtREPstrdq : concatenate strings (remove " + ")
#? txtREPascii : replace all non-printable 7-bit ASCII with hex value
#? txtREP4ucs : replace all \uhhhh by corresponding character
#? txtREP4hex : replace all \xhh by corresponding character
#? txtREP4url : replace all %hh or %hh%hh by corresponding character
#? txtREPstrsq : concatenate strings (remove ' + ')
#? txtReverse : reverse text
#? txtPAD10 : pad leading 0 if number < 10
#? txtPAD100 : pad leading 0 if number < 100
#? txtTrimL : remove leading spaces
#? txtTrimR : remove trailing spaces
#? txtTrim : remove leading and trailing spaces
#? txtXesc : convert hex values to \x-escaped values
#? txtEntity : simple replacement of Entities: " < > &
#? txtEntity0 : simple replacement of Entities: < > &
#? txturl2 : convert %hx to %%hxhx
#? txturl4 : convert %h23x to %%h23xh23x
#? txtncrNAME : convert &name; to &&name;name;
#? txtncrNUMBER: convert &#dd; to &&#dd;#dd; (works fo decimal and hex)
#?
# HACKER's INFO
# -----------------------------------------------------------------------
#?
#? VERSION
#? @(#) EnDeText.js 3.27 20/11/17 00:38:05
#?
#? AUTHOR
#? 08-sep-08 Achim Hoffmann, mailto: EnDe (at) my (dash) stp (dot) net
#?
* ========================================================================= */
// ========================================================================= //
// EnDe.Text object methods //
// ========================================================================= //
if (typeof(EnDe)==='undefined') { EnDe = new function() {}; }
EnDe.Text = new function() {
this.SID = '3.27';
this.sid = function() { return('@(#) EnDeText.js 3.27 20/11/17 00:38:05 EnDe.Text'); };
this.trace = false;
// ===================================================================== //
// internal/private functions //
// ===================================================================== //
function __dbx(t,n) { if (EnDe.Text.trace===true) { EnDe.dbx(t,n); } };
// ===================================================================== //
// public functions //
// ===================================================================== //
// ToDo: support international (Unicode) characters
this.uc = function(src) {
//#? convert [a-z] to [A-Z]
return src.replace(/[a-z]/g, function(c){return String.fromCharCode(c.charCodeAt()-32); });
}; // uc
this.lc = function(src) {
//#? convert [A-Z] to [a-z]
return src.replace(/[A-Z]/g, function(c){return String.fromCharCode(c.charCodeAt()+32); });
}; // uc
this.rec = function(type,src) {
//#? embed some special codings inside themself
//#type? url2: convert %hx to %%hxhx
//#type? url4: convert %h23x to %%h23xh23x
//#type? ncrNAME: convert &name; to &&name;name;
//#type? ncrNUMBER: convert &#dd; to &&#dd;#dd;
__dbx('EnDe.Text.rec(' + type + ', ...)');
switch (type) {
// JavaScript's RegEx are picky, hence we need a group for %, otherwise it would not match
case 'url2': return src.replace(/(%)([0-9a-fA-F]{2})/g, function(b,c,d){return c + c + d + d; }); break;
case 'url4': return src.replace(/(%)(u?[0-9a-fA-F]{4})/g,function(b,c,d){return c + c + d + d; }); break;
case 'ncrNAME': return src.replace(/(&)([0-9a-zA-Z]+);/g, function(b,c,d){return c + c + d + ';' + d + ';'; }); break;
case 'ncrNUMBER': return src.replace(/(&)(#x?[0-9a-fA-F]+);/g,function(b,c,d){return c + c + d + ';' + d + ';'; }); break;
}
return src; // fallback; should never occour
}; // uc
// ===================================================================== //
// dispatch method //
// ===================================================================== //
this.dispatch = function(src,item,pos) {
//#? wrapper for various text manipulations
/* src : text to be modified
* item : mode of modification
* pos : position where modification takes place (default: 0)
*/
__dbx('EnDe.Text.dispatch(`' + src + "', " + item + ', ' + pos + ')');
if (src===null) { return ''; }
var bux = src;
var bbb = '';
var ccc = '';
var kkk = null;
var i = 0;
/* NOTE: we use \x00 instead of \0 to avoid error in some browsers like:
* Warnung: non-octal digit in an escape sequence that doesn't match a back-reference
*/
switch (item) {
case 'txtNULL' : bux = null; break;
case 'txtUC' : bux = this.uc(src); break;
case 'txtLC' : bux = this.lc(src); break;
case 'txtRECurl2' : bux = this.rec('url2', src); break;
case 'txtRECurl4' : bux = this.rec('url4', src); break;
case 'txtRECncrNAME':bux= this.rec('ncrNAME', src); break;
case 'txtRECncrNUMBER': bux = this.rec('ncrNUMBER', src); break;
case 'txtClear' : bux = ''; break;
case 'txtAPP00' : bux += '\0'; break;
case 'txtAPPnl' : bux += '\n'; break;
case 'txtAPPcr' : bux += '\r'; break;
case 'txtAPPht' : bux += '\t'; break;
case 'txtAPPvt' : bux += '\v'; break;
case 'txtAPPsp' : bux += ' '; break;
case 'txtDEL00' : bux = bux.replace(/\x00/g, ''); break;
case 'txtDELnl' : bux = bux.replace(/\n/g, ''); break;
case 'txtDELcr' : bux = bux.replace(/\r/g, ''); break;
case 'txtDELht' : bux = bux.replace(/\t/g, ''); break;
case 'txtDELvt' : bux = bux.replace(/\v/g, ''); break;
case 'txtDELsp' : bux = bux.replace(/ /g, ''); break;
case 'txtDELsq' : bux = bux.replace(/'/g, ''); break;
case 'txtDELdq' : bux = bux.replace(/"/g, ''); break;
case 'txtDELbsn' : bux = bux.replace(/\\n/g, ''); break;
case 'txtDELbsr' : bux = bux.replace(/\\r/g, ''); break;
case 'txtDELbssq' : bux = bux.replace(/\\'/g, ''); break;
case 'txtDELbsdq' : bux = bux.replace(/\\"/g, ''); break;
case 'txtDELbssl' : bux = bux.replace(/\\\//g, ''); break;
case 'txtDELbsnl' : bux = bux.replace(/\\\n/g, ''); break;
case 'txtDELspbs' : bux = bux.replace(/ \\/g, ''); break;
case 'txtDELbsany': bux = bux.replace(/\\./g, ''); break;
case 'txtDELquote': bux = bux.replace(/'/g, '').replace(/"/g, ''); break;
case 'txtDELnon7bn':bux = bux.replace(/[^\x09\x0a\x0d\x20-\x7e]/g, ''); break;
case 'txtDELnon7b': bux = bux.replace(/[^\x20-\x7e]/g, ''); break;
case 'txtDELnon128':bux = bux.replace(/[^\x01-\x7f]/g, ''); break;
case 'txtDELnon256':bux = bux.replace(/[^\x01-\xff]/g, ''); break;
case 'txtDELascii': bux = bux.replace(/[^\S]/g, ''); break; // ToDo: ??
case 'txtDELalnum': bux = bux.replace(/[^\w0-9]/g, ''); break;
case 'txtDELwhite': bux = bux.replace(/[\t \r\n]/g, ''); break;
case 'txtDELsgml' : bux = bux.replace(/(<(\/!)?)|(\/?>)/g, ''); break;
case 'txtDELmixed': bux = bux.replace(/[\t \r\n\+"\']/g, ''); break;
case 'txtDELfffx' : bux = bux.replace(/[\ufff0-\uffff]/g, ''); break;
case 'txtINS00' : bux = bux.slice(0,pos) + '\0' + bux.slice(pos); break;
case 'txtINSnl' : bux = bux.slice(0,pos) + '\n' + bux.slice(pos); break;
case 'txtINScr' : bux = bux.slice(0,pos) + '\r' + bux.slice(pos); break;
case 'txtINSht' : bux = bux.slice(0,pos) + '\t' + bux.slice(pos); break;
case 'txtINSvt' : bux = bux.slice(0,pos) + '\v' + bux.slice(pos); break;
case 'txtREPplus' : bux = bux.replace(/\+/g, ' ' ); break;
case 'txtREPplus20' : bux = bux.replace(/\+/g, '%20' ); break;
case 'txtREPspace' : bux = bux.replace(/ /g, '+' ); break;
case 'txtREPspace20' : bux = bux.replace(/ /g, '%20' ); break;
case 'txtREP20space' : bux = bux.replace(/%20/g, ' ' ); break;
case 'txtREP20plus' : bux = bux.replace(/%20/g, '+' ); break;
case 'txtREPbar' : bux = bux.replace(/\|/g, '\n' ); break;
case 'txtREPrab' : bux = bux.replace(/\n/g, '|' ); break;
case 'txtREPdouble':bux = bux.replace(/\\/g, '\\\\'); break;
case 'txtREPreduce':bux = bux.replace(/\\\\/g, '\\' ); break;
case 'txtREPascii': bux = bux.replace(/([^\x20-\x7e])/g, function(c){return EnDe.dez2hex('url4',0,false,c.charCodeAt(),'','');}); break;
case 'txtREP2url' : bux = bux.replace(/([^\x20-\x7e])/g, function(c){return EnDe.dez2hex('url2',0,false,c.charCodeAt(),'','');}); break;
case 'txtREP2hex' : bux = bux.replace(/([^\x20-\x7e])/g, function(c){return EnDe.EN.hex( 'null',0,false,c,'\\x','','');}); break;
case 'txtREP2ucs' : bux = bux.replace(/([^\x20-\x7e])/g, function(c){return EnDe.EN.ucs( 'ucs4',0,false,c,'','','');}); break;
// ToDo: following not yet working proper
// ToDo: fails for \xHHHH
case 'txtREP4hex' : bux = bux.replace(/(\\x[0-9a-f][0-9a-f])/ig, function(c){return EnDe.DE.num('hex', 0,c,'\\x','','');}); break;
case 'txtREP4ucs' : bux = bux.replace(/(\\u[0-9a-f]{4})/ig, function(c){return EnDe.DE.url('null',0,c,'','','');}); break;
case 'txtREP4url' : bux = bux.replace(/(%[0-9a-f][0-9a-f])/ig, function(c){return EnDe.DE.ucs('url2',0,c,'','','');}); break;
// ToDo: above
case 'txtREPsgml' : bux = bux.replace(/(<(\/!)?)|(\/?>)/g, ' '); break;
case 'txtREPalnum': bux = bux.replace(/([^\w0-9])/g, ' '); break;
case 'txtREP00' : bux = bux.replace(/\x00/g, '\\0'); break;
case 'txtREPnl' : bux = bux.replace(/\n/g, '\\n'); break;
case 'txtREPcr' : bux = bux.replace(/\r/g, '\\r'); break;
case 'txtREPht' : bux = bux.replace(/\t/g, '\\t'); break;
case 'txtREPvt' : bux = bux.replace(/\v/g, '\\v'); break;
case 'txtREPbsn' : bux = bux.replace(/\\n/g, "\n" ); break;
case 'txtREPbsr' : bux = bux.replace(/\\r/g, "\r" ); break;
case 'txtREPbst' : bux = bux.replace(/\\t/g, "\t" ); break;
case 'txtREPbssq' : bux = bux.replace(/\\'/g, "'" ); break;
case 'txtREPbsdq' : bux = bux.replace(/\\"/g, '"' ); break;
case 'txtREPpercent' : bux = bux.replace(/%%/g, '%' ); break;
case 'txtREPbssl' : bux = bux.replace(/\\\//g, '/' ); break;
case 'txtREPbsany': bux = bux.replace(/\\(.)/g, '$1' ); break;
case 'txtREPstrdq': bux = bux.replace(/"\s*\+\s*"/g, '' ); break;
case 'txtREPstrsq': bux = bux.replace(/'\s*\+\s*'/g, '' ); break;
case 'txtREPdqsq' : bux = bux.replace(/"/g, "'" ); break;
case 'txtREPsqdq' : bux = bux.replace(/'/g, '"' ); break;
case 'txtREPsqbt' : bux = bux.replace(/'/g, '`' ); break;
case 'txtREPsq' : bux = bux.replace(/^'/, '').replace(/'$/, '' ); break;
case 'txtREPdq' : bux = bux.replace(/^"/, '').replace(/"$/, '' ); break;
case 'txtReverse' : bux = EnDe.reverse(src); break;
case 'txtPAD10' : if (bux<10) { bux = '0' + bux; }; break;
case 'txtPAD100' : bux = EnDe.Text.dispatch(bux, 'txtPAD10'); if (bux<100) { bux = '0' + bux; }; break;
case 'txtEntity' : bux = bux.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>').replace(/"/g, '"'); break;
case 'txtEntity0' : bux = bux.replace(/&/g, '&').replace(/</g, '<').replace(/>/g, '>'); break;
case 'txtTrimR' : bux = bux.replace(/ *\n/g, '\n').replace(/ *$/g, ''); break;
case 'txtTrimL' : bux = bux.replace(/\n */g, '\n'); break;
case 'txtTrim' : bux = EnDe.Text.dispatch(EnDe.Text.dispatch(bux,'txtTrimL'),'txtTrimR'); break;
case 'txtXesc' :
bux = bux.replace(/( *\|.*)/g, '').replace(/^ */, ' ').replace(/ /g, ' ').replace(/ /g,'\\x');
/* \______________________/ \_________________/ \_________________/ \_________________/
* remove trailing |.* ensure just one squeeze all replace remaining
* leading space duplicate spaces spaces with \x
*/
break;
case 'txtREPqqqq':
bbb = '';
i = 0;
while (i<bux.length) { // slow but safe
ccc = bux.charAt(i);
i++;
if (ccc == '\\') { // ignore escaped quotes
bbb += ccc;
bbb += bux.charAt(i);
i++;
continue;
}
switch(ccc) {
case '"': bbb += "'"; break;
case "'": bbb += '"'; break;
default: bbb += ccc; break;
}
}
bux = bbb;
break;
case 'txtINS4sp':
bbb = bux.split('').reverse().join('');
bbb = bbb.replace(/(....)/g, '$1 ');
bux = bbb.split('').reverse().join('');
break;
case 'txtINS8sp':
bbb = bux.split('').reverse().join('');
bbb = bbb.replace(/(........)/g, '$1 ');
bux = bbb.split('').reverse().join('');
break;
case 'dezEXP':
// ToDo: ersetze 42-48 durch 42,43,44,45,46,47,48
break;
case 'dezFOLD':
// ToDo: ersetze 42,43,44,45,46,47,48 durch 42-48
break;
default:
if (item.match(/^txtINSUCS.*/)!==null) {
/*
* data to be inserted is part of item, 'cause .dispatch() has
* no parameter for data to be inserted, hence we get it as part
* of the item, something like: txtINSUCSdead beaf
*/
kkk = item.replace(/^txtINSUCS/,'').split(/ /); // split: dead beaf
ccc = '';
for (bbb=0; bbb<kkk.length; bbb++) { ccc += String.fromCharCode(parseInt(kkk[bbb],16)); }
bux = bux.slice(0,pos) + ccc + bux.slice(pos);
}
break;
} // switch(item)
bbb = null; ccc = null;
return bux;
}; // dispatch
// ===================================================================== //
// procedural interface //
// ===================================================================== //
//this.NULL = function(src) { return EnDe.Text.dispatch(src, 'txtNULL' ); };
this.Clear = function(src) { return EnDe.Text.dispatch(src, 'txtClear' ); };
this.UC = function(src) { return EnDe.Text.dispatch(src, 'txtUC' ); };
this.LC = function(src) { return EnDe.Text.dispatch(src, 'txtLC' ); };
this.APP00 = function(src) { return EnDe.Text.dispatch(src, 'txtAPP00' ); };
this.APPnl = function(src) { return EnDe.Text.dispatch(src, 'txtAPPnl' ); };
this.APPcr = function(src) { return EnDe.Text.dispatch(src, 'txtAPPcr' ); };
this.APPht = function(src) { return EnDe.Text.dispatch(src, 'txtAPPht' ); };
this.APPvt = function(src) { return EnDe.Text.dispatch(src, 'txtAPPvt' ); };
this.APPsp = function(src) { return EnDe.Text.dispatch(src, 'txtAPPsp' ); };
this.DEL00 = function(src) { return EnDe.Text.dispatch(src, 'txtDEL00' ); };
this.DELnl = function(src) { return EnDe.Text.dispatch(src, 'txtDELnl' ); };
this.DELcr = function(src) { return EnDe.Text.dispatch(src, 'txtDELcr' ); };
this.DELht = function(src) { return EnDe.Text.dispatch(src, 'txtDELht' ); };
this.DELvt = function(src) { return EnDe.Text.dispatch(src, 'txtDELvt' ); };
this.DELsp = function(src) { return EnDe.Text.dispatch(src, 'txtDELsp' ); };
this.DELbsnl = function(src) { return EnDe.Text.dispatch(src, 'txtDELbsnl' ); };
this.DELspbs = function(src) { return EnDe.Text.dispatch(src, 'txtDELspbs' ); };
this.DELnon7b = function(src) { return EnDe.Text.dispatch(src, 'txtDELnon7b' ); };
this.DELnon7bn = function(src) { return EnDe.Text.dispatch(src, 'txtDELnon7bn'); };
this.DELnon128 = function(src) { return EnDe.Text.dispatch(src, 'txtDELnon128'); };
this.DELnon256 = function(src) { return EnDe.Text.dispatch(src, 'txtDELnon256'); };
this.DELascii = function(src) { return EnDe.Text.dispatch(src, 'txtDELascii' ); };
this.DELalnum = function(src) { return EnDe.Text.dispatch(src, 'txtDELalnum' ); };
this.DELwhite = function(src) { return EnDe.Text.dispatch(src, 'txtDELwhite' ); };
this.DELsgml = function(src) { return EnDe.Text.dispatch(src, 'txtDELsgml' ); };
this.DELmixed = function(src) { return EnDe.Text.dispatch(src, 'txtDELmixed' ); };
this.DELfffx = function(src) { return EnDe.Text.dispatch(src, 'txtDELfffx' ); };
this.REPplus = function(src) { return EnDe.Text.dispatch(src, 'txtREPplus' ); };
this.REPspace = function(src) { return EnDe.Text.dispatch(src, 'txtREPspace' ); };
this.REPplus20 = function(src) { return EnDe.Text.dispatch(src, 'txtREPplus20' ); };
this.REPspace20 = function(src) { return EnDe.Text.dispatch(src, 'txtREPspace20' ); };
this.REP20plus = function(src) { return EnDe.Text.dispatch(src, 'txtREP20plus' ); };
this.REP20space = function(src) { return EnDe.Text.dispatch(src, 'txtREP20space' ); };
this.REPdouble = function(src) { return EnDe.Text.dispatch(src,' txtREPdouble' ); };
this.REPreduce = function(src) { return EnDe.Text.dispatch(src,' txtREPreduce' ); };
this.REPpercent = function(src) { return EnDe.Text.dispatch(src,' txtREPpercent' ); };
this.REPascii = function(src) { return EnDe.Text.dispatch(src, 'txtREPascii' ); };
this.REPsgml = function(src) { return EnDe.Text.dispatch(src, 'txtREPsgml' ); };
this.REPalnum = function(src) { return EnDe.Text.dispatch(src, 'txtREPalnum' ); };
this.Reverse = function(src) { return EnDe.Text.dispatch(src, 'txtReverse' ); };
this.PAD10 = function(src) { return EnDe.Text.dispatch(src, 'txtPAD10' ); };
this.PAD100 = function(src) { return EnDe.Text.dispatch(src, 'txtPAD100' ); };
this.TrimR = function(src) { return EnDe.Text.dispatch(src, 'txtTrimR' ); };
this.TrimL = function(src) { return EnDe.Text.dispatch(src, 'txtTrimL' ); };
this.Trim = function(src) { return EnDe.Text.dispatch(src, 'txtTrim' ); };
this.TrimRL = function(src) { return EnDe.Text.dispatch(src, 'txtTrim' ); };
this.TrimLR = function(src) { return EnDe.Text.dispatch(src, 'txtTrim' ); };
this.Xesc = function(src) { return EnDe.Text.dispatch(src, 'txtXesc' ); };
this.Entity = function(src) { return EnDe.Text.dispatch(src, 'txtEntity' ); };
this.Entity0 = function(src) { return EnDe.Text.dispatch(src, 'txtEntity0' ); };
this.REPqqqq = function(src) { return EnDe.Text.dispatch(src, 'txtREPqqqq' ); };
this.REPsqdq = function(src) { return EnDe.Text.dispatch(src, 'txtREPsqdq' ); };
this.REPdqsq = function(src) { return EnDe.Text.dispatch(src, 'txtREPdqsq' ); };
this.REPsqbt = function(src) { return EnDe.Text.dispatch(src, 'txtREPsqbt' ); };
this.REPstrsq = function(src) { return EnDe.Text.dispatch(src, 'txtREPstrsq' ); };
this.REPstrdq = function(src) { return EnDe.Text.dispatch(src, 'txtREPstrdq' ); };
this.INS00 = function(s,p) { return EnDe.Text.dispatch(s, 'txtINS00', p); };
this.INSnl = function(s,p) { return EnDe.Text.dispatch(s, 'txtINSnl', p); };
this.INScr = function(s,p) { return EnDe.Text.dispatch(s, 'txtINScr', p); };
this.INSht = function(s,p) { return EnDe.Text.dispatch(s, 'txtINSht', p); };
this.INSvt = function(s,p) { return EnDe.Text.dispatch(s, 'txtINSvt', p); };
this.INS4sp = function(s,p) { return EnDe.Text.dispatch(s, 'txtINS4sp', p); };
this.INS8sp = function(s,p) { return EnDe.Text.dispatch(s, 'txtINS8sp', p); };
}; // EnDe.Text