Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: How do I pull n characters off the front of a string?

by davido (Cardinal)
on Oct 03, 2003 at 01:31 UTC ( [id://296137]=note: print w/replies, xml ) Need Help??


in reply to How do I pull n characters off the front of a string?

The other examples all handed off the first $n characters. But they didn't remove those first $n characters from the original $string, as the question required.

As always, there is more than one way to do it. For each of the examples below, assume the following setup:

my $string = "1234567890abcdefghijABCDEFGHIJK"; my $chars; my $n = 2;

With substr:

$chars = substr( $string, 0, $n ); substr( $string, 0, $n ) = "";

Another with substr:

( $chars, $string ) = ( substr($string,0,$n), substr($string,$n) );

And probaby the best substr solution:

$chars = substr ($string, 0, $n, "");

With a substitution s/// regexp:

$string = s/^(.{$n})(.*)$/$2/s; $chars = $1;

With split:

($chars, $string) = split /^(.{$n})/, $string, 1;

With a pattern match (m//):

($chars, $string) = $string =~ /^(.{$n})(.*)$/s;

With unpack (Not for the faint of heart):

( $chars, $string ) = unpack "a$n a@{[length($string)-$n]}", $string;

Replies are listed 'Best First'.
Re: Answer: How do I pull n characters off the front of a string?
by Aristotle (Chancellor) on Oct 03, 2003 at 22:31 UTC
    unpack:
    ($chars, $string) = unpack "a$n a*", $string;
    The four parameter substr is clearly the cleanest solution though.

    Makeshifts last the longest.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://296137]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (2)
As of 2024-04-20 03:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found