Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
14
Task/String-matching/Oforth/string-matching.oforth
Normal file
14
Task/String-matching/Oforth/string-matching.oforth
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
: stringMatching(s1, s2)
|
||||
| i |
|
||||
s2 isAllAt(s1, 1) ifTrue: [ System.Out s1 << " begins with " << s2 << cr ]
|
||||
s2 isAllAt(s1, s1 size s2 size - 1 + ) ifTrue: [ System.Out s1 << " ends with " << s2 << cr ]
|
||||
|
||||
s1 indexOfAll(s2) ->i
|
||||
i ifNotNull: [ System.Out s1 << " includes " << s2 << " at position : " << i << cr ]
|
||||
|
||||
"\nAll positions : " println
|
||||
1 ->i
|
||||
while (s1 indexOfAllFrom(s2, i) dup ->i notNull) [
|
||||
System.Out s1 << " includes " << s2 << " at position : " << i << cr
|
||||
i s2 size + ->i
|
||||
] ;
|
||||
Loading…
Add table
Add a link
Reference in a new issue