String matching: Difference between revisions

m (→‎{{header|REXX}}: added and changed comments, added another method of comparing character strings. -- ~~~~)
Line 1,611:
3
</pre>
 
=={{header|Smalltalk}}==
<lang smalltalk>a startsWith: b
a includesSubCollection: b
s endsWith: b
a indexOfSubCollection: b
a indexOfSubCollection: b satrtingAt: pos<lang>
 
=={{header|Standard ML}}==
Anonymous user