📜  珀尔 |打印运算符

📅  最后修改于: 2022-05-13 01:55:10.811000             🧑  作者: Mango

珀尔 |打印运算符

Perl 中的 print运算符用于打印作为参数传递给它的 List 中表达式的值。打印运算符打印作为参数传递给它的任何内容,无论它是字符串、数字、变量还是任何东西。双引号(“”)用作此运算符的分隔运算符。

示例 1:

Perl
#!/usr/bin/perl -w
 
# Defining a string
$string = "Geeks For Geeks";
 
# Defining an array of Integers
@array = (10, 20, 30, 40, 50, 60);
 
# Searching a pattern in the string
# using index() function
$index = index ($string, 'or');
 
# Printing the position of matched pattern
print "Position of 'or' in the string $index\n";
 
# Printing the defined array
print "Array of Integers is @array\n";


Perl
#!/usr/bin/perl -w
 
# Defining a string
$string = "Welcome to GFG";
 
# Defining an array of integers
@array = (-10, 20, 15, -40, 45, -60);
 
# Searching a pattern in the string
# using index() function
$index = index($string, 'o G');
 
# Printing the position of matched pattern
print "Position of 'o G' in the string $index\n";
 
# Printing the defined array
print "Array of Integers @array\n";


输出:
Position of 'or' in the string 7
Array of Integers is 10 20 30 40 50 60

示例 2:

Perl

#!/usr/bin/perl -w
 
# Defining a string
$string = "Welcome to GFG";
 
# Defining an array of integers
@array = (-10, 20, 15, -40, 45, -60);
 
# Searching a pattern in the string
# using index() function
$index = index($string, 'o G');
 
# Printing the position of matched pattern
print "Position of 'o G' in the string $index\n";
 
# Printing the defined array
print "Array of Integers @array\n";
输出:
Position of 'o G' in the string 9
Array of Integers -10 20 15 -40 45 -60