Linux Ask!

Linux Ask! is a Q & A web site specific for Linux related questions. Questions are collected, answered and audited by experienced Linux users.

Split a string into array in Perl

Answer:

To split a string into an array in Perl, follow the codes below

my $data = 'peter,mary,john';

my @values = split(',', $data);

  1. How to convert hash to array in Perl?
  2. A simple array in Perl
  3. Array reference in Perl
  4. How to find out whether reference is pointing to a scalar, array or hash in Perl?
  5. Trim a string using Perl

Leave a Reply

(required)

(required)

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>