Quick actions

cmd+k|ctrl+k

Navigation

Languages

substr() and index()

Snippet info

Language

Perl

Visibility

public

Author

grtodd

Created

2017-02-27T16:35:00Z

Updated

2017-02-27T16:35:00Z

use 5.24.0;

my $string = "Hello World!\n";
say $string ;
say substr $string, index ($string, "o")+1, 5 ;
INFO