Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
8
Task/Substring/PL-I/substring.pli
Normal file
8
Task/Substring/PL-I/substring.pli
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
s='abcdefghijk';
|
||||
n=4; m=3;
|
||||
u=substr(s,n,m);
|
||||
u=substr(s,n);
|
||||
u=substr(s,1,length(s)-1);
|
||||
u=left(s,length(s)-1);
|
||||
u=substr(s,1,length(s)-1);
|
||||
u=substr(s,index(s,'g'),m);
|
||||
Loading…
Add table
Add a link
Reference in a new issue