String matching: Difference between revisions

Content added Content deleted
Line 1,615: Line 1,615:
<lang smalltalk>a startsWith: b
<lang smalltalk>a startsWith: b
a includesSubCollection: b
a includesSubCollection: b
s endsWith: b
a endsWith: b
a indexOfSubCollection: b
a indexOfSubCollection: b
a indexOfSubCollection: b startingAt: pos</lang>
a indexOfSubCollection: b startingAt: pos</lang>