tasks a-s
This commit is contained in:
parent
47bf37c096
commit
b83f433714
12433 changed files with 156208 additions and 123 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