Substitution Operator or ‘s’ operator in Perl is used to substitute a text of the string with some pattern specified by the user.
Syntax: s/text/pattern
Returns: 0 on failure and number of substitutions on success
Example 1:
$string = "GeeksforGeeks" ;
$string =~ s/ for /to/;
print "$string\n" ;
|
Example 2:
$string = "Hello all!!! Welcome here" ;
$string =~ s/here/to Geeks/;
print "$string\n" ;
|
Output:
Hello all!!! Welcome to 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!