Help for this page

Select Code to Download


  1. or download this
    my ($stuff) = $thing =~ m{^([^/]*)};
    
  2. or download this
    my ($stuff) = $thing =~ m{^(.*?)/}s;
    
  3. or download this
    my ($stuff) = split(qr{/}, $thing, 2);
    
  4. or download this
    my ($stuff) = split(qr{/}, $thing);