Comparison of programming languages (string functions): Difference between revisions

Content deleted Content added
join: Add Perl 6 section + examp[le
left: Add mentions of Perl 6
Line 1,437:
|-
| <code>substr(''string'', 0, ''n'')</code>
|[[AWK]] (changes string), [[Perl 5]], [[Perl 6]], [[PHP]]
|-
| <code>LEFT$(''string'',''n'')</code>
Line 1,449:
|-
| <code>''string''.substr(0,''n'')</code>
|[[C++]] (STL), [[Perl 6]]
|-
| <code>[''string'' substringToIndex:''n'']</code>