I've tried searching through questions already asked, but can't seem to find anything. I'm sure its incredibly simple to do, but I am completely new to Perl.

What I am trying to do is remove characters in an string up to a certain point. For example, I have:

Parameter1 : 0xFFFF

and what I would like to do is remove the "Parameter1:" and be left with just the "0xFFFF". If anyone can help and give a simple explanation of the operators used, that'd be great.

link|improve this question
feedback

4 Answers

Sounds like you need the substr function.

  #!/usr/bin/perl
  use strict;
  use warnings;

  my $string = 'Parameter1 : 0xFFFF';
  my $fragment =  substr $string, 12;
  print "  string: <$string>\n";
  print "fragment: <$fragment>\n";
link|improve this answer
or a regular expression – Amadan Oct 21 '11 at 0:46
substr makes sense only if you know how many characters you want to delete (or retain). – Keith Thompson Oct 21 '11 at 0:47
1  
@Keith: But index combined with substr could be a valid choice (depending on the expected format of the string of course). – mu is too short Oct 21 '11 at 0:48
Yes, substr() can use an expression for the offset. - hehe we thought about it at the same time I guess! – Daniel Pereira Oct 21 '11 at 0:50
@muistooshort: I'll weasel out of that by saying that you still need to know how many characters; you can get away with knowing it at run-time. But a regexp solution is more idiomatic and easier to read. substr might be faster in some circumstances, but I wouldn't do that kind of micro-optimization unless I know there's going to be a significant improvement. – Keith Thompson Oct 21 '11 at 0:53
show 2 more comments
feedback
s/.*:\s*//;

or

$s =~ s/.*:\s*//;

This deletes everything up to and including the first occurrence of : followed by zero or more whitespace characters. With $s =~ it's applied to $s; without it, it's applied to $_.

link|improve this answer
feedback

Have you considered using something like Config::Std?

Here is how to parse a configuration file like that by hand:

#!/usr/bin/perl

use strict; use warnings;

my %params;

while ( my $line = <DATA> ) {
    if ($line =~ m{
            ^
            (?<param> Parameter[0-9]+)
            \s*? : \s*?
            (?<value> 0x[[:xdigit:]]+)
        }x ) {
        $params{ $+{param} } = $+{value};
    }
}

use YAML;
print Dump \%params;

__DATA__
Parameter1 : 0xFFFF
Parameter3 : 0xFAFF
Parameter4 : 0xCAFE

With Config::Std:

#!/usr/bin/perl

use strict; use warnings;
use Config::Std;

my $config = do { local $/; <DATA> };

read_config \$config, my %params;

use YAML;
print Dump \%params;

__DATA__
Parameter1 : 0xFFFF
Parameter3 : 0xFAFF
Parameter4 : 0xCAFE

Of course, in real life, you'd pass a file name to read_config instead of slurping it.

link|improve this answer
+1 Nice module. – TLP Oct 21 '11 at 1:27
feedback

I like split for these parameter/value pairs.

my $str = "Parameter1 : 0xFFFF";
my ($param, $value) = split /\s*:\s*/, $str, 2;

Note the use of LIMIT in the split, which limits the split to two fields (in case of additional colons in the value).

link|improve this answer
As an aside, I like to be able to say in my config files Parameter1 : 0xFFFF # See Frobnicator Manual section 42.17.64 in which case the split approach requires additional work. – Sinan Ünür Oct 21 '11 at 1:36
I see that Config::Std does not allow such comments either, though. $value =~ s/#.+//; is rather simple. – TLP Oct 21 '11 at 1:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.