-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathString.html
665 lines (439 loc) · 17.1 KB
/
String.html
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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<head>
<title>Zenroom LUA</title>
<link rel="stylesheet" href="" type="text/css" />
</head>
<body>
<div id="container">
<div id="product">
<div id="product_logo"></div>
<div id="product_name"><big><b></b></big></div>
<div id="product_description"></div>
</div> <!-- id="product" -->
<div id="main">
<!-- Menu -->
<div id="navigation">
<br/>
<h1>Zenroom</h1>
<ul>
<li><a href="../index.html">Index</a></li>
</ul>
<h2>Contents</h2>
<ul>
<li><a href="#Functions">Functions</a></li>
</ul>
<h2>Modules</h2>
<ul class="nowrap">
<li><a href="../modules/OCTET.html">OCTET</a></li>
<li><a href="../modules/HASH.html">HASH</a></li>
<li><a href="../modules/ECDH.html">ECDH</a></li>
<li><a href="../modules/ECP.html">ECP</a></li>
<li><strong>String</strong></li>
<li><a href="../modules/Table.html">Table</a></li>
<li><a href="../modules/INSPECT.html">INSPECT</a></li>
<li><a href="../modules/ZEN.html">ZEN</a></li>
<li><a href="../modules/BIG.html">BIG</a></li>
</ul>
<h2>Examples</h2>
<ul class="nowrap">
<li><a href="../examples/keygen.lua.html">keygen.lua</a></li>
<li><a href="../examples/crypt-to-multi.lua.html">crypt-to-multi.lua</a></li>
</ul>
</div>
<div id="content">
<h1>Module <code>String</code></h1>
<p>
<h1>String operations</h1>
<p> Standard Lua string manipulation like searching and matching.</p>
</p>
<p>
</p>
<h2><a href="#Functions">Functions</a></h2>
<table class="function_list">
<tr>
<td class="name" nowrap><a href="#string.byte">string.byte (s, i, j)</a></td>
<td class="summary">Returns the internal numerical codes of the characters <code>s[i]</code>, <code>s[i+1]</code>,
..., <code>s[j]</code>.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#string.char">string.char (...)</a></td>
<td class="summary">Receives zero or more integers.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#string.dump">string.dump (function)</a></td>
<td class="summary">Returns a string containing a binary representation of the given
function, so that a later <a href="https://www.lua.org/manual/5.1/manual.html#pdf-loadstring">loadstring</a> on this string returns a copy of
the function.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#string.find">string.find (s, pattern, init, plain)</a></td>
<td class="summary">Looks for the first match of <code>pattern</code> in the string <code>s</code>.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#string.format">string.format (formatstring, ...)</a></td>
<td class="summary">Returns a formatted version of its variable number of arguments following
the description given in its first argument (which must be a string).</td>
</tr>
<tr>
<td class="name" nowrap><a href="#string.gmatch">string.gmatch (s, pattern)</a></td>
<td class="summary">Returns an iterator function that, each time it is called, returns the
next captures from <code>pattern</code> over string <code>s</code>.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#string.gsub">string.gsub (s, pattern, repl, n)</a></td>
<td class="summary">Returns a copy of <code>s</code> in which all (or the first <code>n</code>, if given)
occurrences of the <code>pattern</code> have been replaced by a replacement string
specified by <code>repl</code>, which can be a string, a table, or a function.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#string.len">string.len (s)</a></td>
<td class="summary">Receives a string and returns its length.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#string.lower">string.lower (s)</a></td>
<td class="summary">Receives a string and returns a copy of this string with all uppercase
letters changed to lowercase.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#string.match">string.match (s, pattern, init)</a></td>
<td class="summary">Looks for the first <em>match</em> of <code>pattern</code> in the string <code>s</code>.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#string.rep">string.rep (s, n)</a></td>
<td class="summary">Returns a string that is the concatenation of <code>n</code> copies of the string
<code>s</code>.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#string.reverse">string.reverse (s)</a></td>
<td class="summary">Returns a string that is the string <code>s</code> reversed.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#string.sub">string.sub (s, i, j)</a></td>
<td class="summary">Returns the substring of <code>s</code> that starts at <code>i</code> and continues until
<code>j</code>; <code>i</code> and <code>j</code> can be negative.</td>
</tr>
<tr>
<td class="name" nowrap><a href="#string.upper">string.upper (s)</a></td>
<td class="summary">Receives a string and returns a copy of this string with all lowercase
letters changed to uppercase.</td>
</tr>
</table>
<br/>
<br/>
<h2 class="section-header "><a name="Functions"></a>Functions</h2>
<dl class="function">
<dt>
<a name = "string.byte"></a>
<strong>string.byte (s, i, j)</strong>
</dt>
<dd>
Returns the internal numerical codes of the characters <code>s[i]</code>, <code>s[i+1]</code>,
..., <code>s[j]</code>. The default value for <code>i</code> is 1; the default value for <code>j</code>
is <code>i</code>.
Note that numerical codes are not necessarily portable across platforms.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">s</span>
</li>
<li><span class="parameter">i</span>
</li>
<li><span class="parameter">j</span>
</li>
</ul>
</dd>
<dt>
<a name = "string.char"></a>
<strong>string.char (...)</strong>
</dt>
<dd>
Receives zero or more integers. Returns a string with length equal to
the number of arguments, in which each character has the internal numerical
code equal to its corresponding argument.
Note that numerical codes are not necessarily portable across platforms.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">...</span>
</li>
</ul>
</dd>
<dt>
<a name = "string.dump"></a>
<strong>string.dump (function)</strong>
</dt>
<dd>
Returns a string containing a binary representation of the given
function, so that a later <a href="https://www.lua.org/manual/5.1/manual.html#pdf-loadstring">loadstring</a> on this string returns a copy of
the function. <code>function</code> must be a Lua function without upvalues.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">function</span>
</li>
</ul>
</dd>
<dt>
<a name = "string.find"></a>
<strong>string.find (s, pattern, init, plain)</strong>
</dt>
<dd>
Looks for the first match of <code>pattern</code> in the string <code>s</code>. If it finds a
match, then <a href="../modules/String.html#string.find">find</a> returns the indices of <code>s</code> where this occurrence starts
and ends; otherwise, it returns nil. A third, optional numerical argument
<code>init</code> specifies where to start the search; its default value is 1 and
can be negative. A value of true as a fourth, optional argument <code>plain</code>
turns off the pattern matching facilities, so the function does a plain
"find substring" operation, with no characters in <code>pattern</code> being considered
"magic". Note that if <code>plain</code> is given, then <code>init</code> must be given as well.
If the pattern has captures, then in a successful match the captured values
are also returned, after the two indices.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">s</span>
</li>
<li><span class="parameter">pattern</span>
</li>
<li><span class="parameter">init</span>
</li>
<li><span class="parameter">plain</span>
</li>
</ul>
</dd>
<dt>
<a name = "string.format"></a>
<strong>string.format (formatstring, ...)</strong>
</dt>
<dd>
Returns a formatted version of its variable number of arguments following
the description given in its first argument (which must be a string). The
format string follows the same rules as the <code>printf</code> family of standard C
functions. The only differences are that the options/modifiers <code>*</code>, <code>l</code>,
<code>L</code>, <code>n</code>, <code>p</code>, and <code>h</code> are not supported and that there is an extra option,
<code>q</code>. The <code>q</code> option formats a string in a form suitable to be safely read
back by the Lua interpreter: the string is written between double quotes,
and all double quotes, newlines, embedded zeros, and backslashes in the
string are correctly escaped when written. For instance, the call</p>
<pre><code> string.format('%q', 'a string with "quotes" and \n new line')
</code></pre>
<p> will produce the string:</p>
<pre><code> "a string with \"quotes\" and \
new line"
</code></pre>
<p> The options <code>c</code>, <code>d</code>, <code>E</code>, <code>e</code>, <code>f</code>, <code>g</code>, <code>G</code>, <code>i</code>, <code>o</code>, <code>u</code>, <code>X</code>, and
<code>x</code> all expect a number as argument, whereas <code>q</code> and <code>s</code> expect a string.
This function does not accept string values containing embedded zeros,
except as arguments to the <code>q</code> option.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">formatstring</span>
</li>
<li><span class="parameter">...</span>
</li>
</ul>
</dd>
<dt>
<a name = "string.gmatch"></a>
<strong>string.gmatch (s, pattern)</strong>
</dt>
<dd>
Returns an iterator function that, each time it is called, returns the
next captures from <code>pattern</code> over string <code>s</code>. If <code>pattern</code> specifies no
captures, then the whole match is produced in each call.
As an example, the following loop</p>
<pre><code> s = "hello world from Lua"
for w in string.gmatch(s, "%a+") do
print(w)
end
</code></pre>
<p> will iterate over all the words from string <code>s</code>, printing one per line. The
next example collects all pairs <code>key=value</code> from the given string into
a table:</p>
<pre><code> t = {}
s = "from=world, to=Lua"
for k, v in string.gmatch(s, "(%w+)=(%w+)") do
t[k] = v
end
</code></pre>
<p> For this function, a '<code>^</code>' at the start of a pattern does not work as an
anchor, as this would prevent the iteration.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">s</span>
</li>
<li><span class="parameter">pattern</span>
</li>
</ul>
</dd>
<dt>
<a name = "string.gsub"></a>
<strong>string.gsub (s, pattern, repl, n)</strong>
</dt>
<dd>
<p>Returns a copy of <code>s</code> in which all (or the first <code>n</code>, if given)
occurrences of the <code>pattern</code> have been replaced by a replacement string
specified by <code>repl</code>, which can be a string, a table, or a function. <a href="../modules/String.html#string.gsub">gsub</a>
also returns, as its second value, the total number of matches that occurred.</p>
<p> If <code>repl</code> is a string, then its value is used for replacement. The character
<code>%</code> works as an escape character: any sequence in <code>repl</code> of the form <code>%n</code>,
with <em>n</em> between 1 and 9, stands for the value of the <em>n</em>-th captured
substring (see below). The sequence <code>%0</code> stands for the whole match. The
sequence <code>%%</code> stands for a single <code>%</code>.</p>
<p> If <code>repl</code> is a table, then the table is queried for every match, using
the first capture as the key; if the pattern specifies no captures, then
the whole match is used as the key.</p>
<p> If <code>repl</code> is a function, then this function is called every time a match
occurs, with all captured substrings passed as arguments, in order; if
the pattern specifies no captures, then the whole match is passed as a
sole argument.</p>
<p> If the value returned by the table query or by the function call is a
string or a number, then it is used as the replacement string; otherwise,
if it is false or nil, then there is no replacement (that is, the original
match is kept in the string).</p>
<p> Here are some examples:</p>
<pre><code> x = string.gsub("hello world", "(%w+)", "%1 %1")
--> x="hello hello world world"
x = string.gsub("hello world", "%w+", "%0 %0", 1)
--> x="hello hello world"
x = string.gsub("hello world from Lua", "(%w+)%s*(%w+)", "%2 %1")
--> x="world hello Lua from"
x = string.gsub("home = $HOME, user = $USER", "%$(%w+)", os.getenv)
--> x="home = /home/roberto, user = roberto"
x = string.gsub("4+5 = $return 4+5$", "%$(.-)%$", function (s)
return loadstring(s)()
end)
--> x="4+5 = 9"
local t = {name="lua", version="5.1"}
x = string.gsub("$name-$version.tar.gz", "%$(%w+)", t)
--> x="lua-5.1.tar.gz"
</code></pre>
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">s</span>
</li>
<li><span class="parameter">pattern</span>
</li>
<li><span class="parameter">repl</span>
</li>
<li><span class="parameter">n</span>
</li>
</ul>
</dd>
<dt>
<a name = "string.len"></a>
<strong>string.len (s)</strong>
</dt>
<dd>
Receives a string and returns its length. The empty string <code>""</code> has
length 0. Embedded zeros are counted, so <code>"a\000bc\000"</code> has length 5.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">s</span>
</li>
</ul>
</dd>
<dt>
<a name = "string.lower"></a>
<strong>string.lower (s)</strong>
</dt>
<dd>
Receives a string and returns a copy of this string with all uppercase
letters changed to lowercase. All other characters are left unchanged. The
definition of what an uppercase letter is depends on the current locale.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">s</span>
</li>
</ul>
</dd>
<dt>
<a name = "string.match"></a>
<strong>string.match (s, pattern, init)</strong>
</dt>
<dd>
Looks for the first <em>match</em> of <code>pattern</code> in the string <code>s</code>. If it
finds one, then <a href="../modules/String.html#string.match">match</a> returns the captures from the pattern; otherwise
it returns nil. If <code>pattern</code> specifies no captures, then the whole match
is returned. A third, optional numerical argument <code>init</code> specifies where
to start the search; its default value is 1 and can be negative.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">s</span>
</li>
<li><span class="parameter">pattern</span>
</li>
<li><span class="parameter">init</span>
</li>
</ul>
</dd>
<dt>
<a name = "string.rep"></a>
<strong>string.rep (s, n)</strong>
</dt>
<dd>
Returns a string that is the concatenation of <code>n</code> copies of the string
<code>s</code>.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">s</span>
</li>
<li><span class="parameter">n</span>
</li>
</ul>
</dd>
<dt>
<a name = "string.reverse"></a>
<strong>string.reverse (s)</strong>
</dt>
<dd>
Returns a string that is the string <code>s</code> reversed.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">s</span>
</li>
</ul>
</dd>
<dt>
<a name = "string.sub"></a>
<strong>string.sub (s, i, j)</strong>
</dt>
<dd>
Returns the substring of <code>s</code> that starts at <code>i</code> and continues until
<code>j</code>; <code>i</code> and <code>j</code> can be negative. If <code>j</code> is absent, then it is assumed to
be equal to -1 (which is the same as the string length). In particular,
the call <code>string.sub(s,1,j)</code> returns a prefix of <code>s</code> with length <code>j</code>, and
<code>string.sub(s, -i)</code> returns a suffix of <code>s</code> with length <code>i</code>.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">s</span>
</li>
<li><span class="parameter">i</span>
</li>
<li><span class="parameter">j</span>
</li>
</ul>
</dd>
<dt>
<a name = "string.upper"></a>
<strong>string.upper (s)</strong>
</dt>
<dd>
Receives a string and returns a copy of this string with all lowercase
letters changed to uppercase. All other characters are left unchanged. The
definition of what a lowercase letter is depends on the current locale.
<h3>Parameters:</h3>
<ul>
<li><span class="parameter">s</span>
</li>
</ul>
</dd>
</dl>
</div> <!-- id="content" -->
</div> <!-- id="main" -->
<div id="about">
<i>generated by <a href="http://github.com/stevedonovan/LDoc">LDoc 1.4.6</a></i>
<i style="float:right;">Last updated 2020-03-13 12:59:05 </i>
</div> <!-- id="about" -->
</div> <!-- id="container" -->
</body>
</html>