Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
3
Task/Repeat-a-string/NetRexx/repeat-a-string-1.netrexx
Normal file
3
Task/Repeat-a-string/NetRexx/repeat-a-string-1.netrexx
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
/* NetRexx */
|
||||
|
||||
ha5 = 'ha'.copies(5)
|
||||
12
Task/Repeat-a-string/NetRexx/repeat-a-string-2.netrexx
Normal file
12
Task/Repeat-a-string/NetRexx/repeat-a-string-2.netrexx
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
/* NetRexx */
|
||||
sampleStr = 'ha' -- string to duplicate
|
||||
say ' COPIES:' sampleStr.copies(5)
|
||||
say 'CHANGESTR:' '.....'.changestr('.', sampleStr)
|
||||
|
||||
sampleChr = '*' -- character to duplicate
|
||||
say ' LEFT:' sampleChr.left(5, sampleChr)
|
||||
say ' RIGHT:' sampleChr.right(5, sampleChr)
|
||||
say ' CENTRE:' sampleChr.centre(5, sampleChr)
|
||||
say ' OVERLAY:' sampleChr.overlay(sampleChr, 1, 5, sampleChr)
|
||||
say ' SUBSTR:' ''.substr(1, 5, sampleChr)
|
||||
say 'TRANSLATE:' '.....'.translate(sampleChr, '.')
|
||||
Loading…
Add table
Add a link
Reference in a new issue