split() is a string function in Perl which is used to split or you can say to cut a string into smaller sections or pieces. There are different criteria to split a string, like on a single character, a regular expression(pattern), a group of characters or on undefined value etc.. The best thing about this function that user can specify how many sections to split the string into.
Syntax:
split /Pattern/, Expression, Limit
or
split /Pattern/, Expression
or
split /Pattern/
or
Split
In the above syntax, Pattern is specified a regular expression which provides the criteria to split the string. The Expression is the string which is to be split. The Limit is kind of restriction which stops the splitting at (n-1)th pattern found in the string.
Return Value: This method returns the value in two context as follows:
In Array Context: Here it returns a list of the fields which found in Expression. If no Expression is specified then it returns $_.
In Scalar Context: Here it returns the number of fields which found in Expression and then stored the fields in the @_ array.
There are different ways to use split() Function as follows:
- Splitting on a Character
- Splitting among a String without Limit
- Splitting among a String with Limit
- Splitting on a Undefined value
- Splitting on a Regex(Pattern)
- Splitting on Hash
- Splitting on Space
Splitting on a Character
User can break or split the string on different characters like comma(,) backslash(\) etc. This type of splitting is generally used when you have to parse the data from another program or a file. Don’t use split() to parse the CSV(comma separated value) files. If there are commas in your data then use Text::CSV instead.
Example:
use strict;
use warnings;
my $str = 'Geeks, for, Geeks' ;
my @spl = split ( ', ' , $str );
foreach my $i ( @spl )
{
print "$i" ;
}
|
Splitting among String without any Limit
This also works same as the splitting on the character. Here string’s data is separated by two !!.
Example:
use strict;
use warnings;
my $str = 'GFG!!Geeks!!55!!GeeksforGeeks' ;
my @spl = split ( '!!' , $str );
foreach my $i ( @spl )
{
print "$i\n" ;
}
|
Output:
GFG
Geeks
55
GeeksforGeeks
Splitting among String with Limit
This also works same as the splitting on the character. Here string’s data is separated by two !!. Here the user can restrict the number of sections the string will split into by passing the third argument in split function which will be a positive integer value. In below example user pass the Limit as 3 so it will restrict the splitting of the string into 3, even there are the 4 occurrences of !! in the string.
Example:
use strict;
use warnings;
my $str = 'GFG!!Geeks!!55!!GeeksforGeeks' ;
my @spl = split ( '!!' , $str , 3);
foreach my $i ( @spl )
{
print "$i\n" ;
}
|
Output:
GFG
Geeks
55!!GeeksforGeeks
Splitting on an undefined value
If the user will try to split on an undefined value, then the string will split on every character.
Example:
use strict;
use warnings;
my $str = 'GeeksforGeeks GFG' ;
my @spl = split ( undef , $str );
foreach my $i ( @spl )
{
print "$i\n" ;
}
|
Output:
G
e
e
k
s
f
o
r
G
e
e
k
s
G
F
G
Runtime Error:
Use of uninitialized value in regexp compilation at /home/38ececda726bcb7e68fb7b41eee5b8d9.pl line 12.
Splitting on a Pattern or Regex
Sometimes user may want to split the string on a pattern(regex) or a particular type of character. Here we will use the special character classes to make pattern of digits(integer) as follows:
Example:
use strict;
use warnings;
my $str = 'Geeks1for2Geeks' ;
my @spl = split (/\d+/, $str );
foreach my $i ( @spl )
{
print "$i\n" ;
}
|
Splitting into a hash
A user can split the data or string into the hash instead of an array. Basically, a hash is a key/value pair. Before splitting user must have knowledge about the hashes.
Example:
use strict;
use warnings;
my $has = 'GFG=1;GEEKS=2;PROGEEK=3' ;
my %spl = split (/[=;]/, $has );
foreach my $i ( keys %spl )
{
print "$i:$spl{$i}\n" ;
}
|
Output:
GFG:1
GEEKS:2
PROGEEK:3
Splitting on Space
Here space doesn’t mean only ‘ ‘ this space but it also includes the newline, tabs etc.
Example:
use strict;
use warnings;
my $str = "ProGeek\n\nSudo\nPlacements" ;
my @spl = split ( ' ' , $str );
foreach my $i ( @spl )
{
print "GFG${i}GFG\n" ;
}
|
Output:
GFGProGeekGFG
GFGSudoGFG
GFGPlacementsGFG
Important Points To Remember
- As split() function also returns the value in scalar context. So for storing the return values user have to define some scalar values according to the number of sections of splitting. In below example there will be 4 values after splitting so here user will define the 4 scalars values and store the return values.
Example:
use strict;
use warnings;
my $str = 'GFG!Sudo!GeeksforGeeks!ProGeek' ;
my ( $sc1 , $sc2 , $sc3 , $sc4 ) = split ( '!' , $str );
print "$sc1\n$sc2\n$sc3\n$sc4" ;
|
Output:
GFG
Sudo
GeeksforGeeks
ProGeek
- There may be a situation when user don’t pass in a string to split, then by default split() function will use the $_ and if user don’t pass a Expression i.e. the string to split on then it will use ‘ ‘(a space).
Example:
use strict;
use warnings;
foreach ( 'G F G' , 'Geeks for Geeks' )
{
my @spl = split ;
print "Split $_:\n" ;
foreach my $i ( @spl )
{
print " $i\n" ;
}
}
|
Output:
Split G F G:
G
F
G
Split Geeks for Geeks:
Geeks
for
Geeks
- If the delimiter is present at the starting of the string which is to be split, then the first element of return values will be empty and that will store into the array. In below example we have this situation and we are printing the empty value of resulted array:
Example:
use strict;
use warnings;
my $str = ', GFG, Geeks' ;
my @spl = split ( ', ' , $str );
foreach my $i ( @spl )
{
print "Array_Element: $i\n" ;
}
|
Output:
Array_Element:
Array_Element: GFG
Array_Element: Geeks
- If you want to keep the delimiter in result also then simply put that delimiter inside the parentheses.
Example:
use strict;
use warnings;
my $str = 'Geeks1for2Geeks' ;
my @spl = split (/(\d+)/, $str );
foreach my $i ( @spl )
{
print "$i\n" ;
}
|
Output:
Geeks
1
for
2
Geeks
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!