码迷,mamicode.com
首页 > 其他好文 > 详细

perl中的奇怪符号

时间:2015-01-08 19:32:13      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:

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

#1  符号:$&   $`  $‘
my $str="my name is  hello world,and  her name  is hello world";
if($str=~m/name/g){
    print $`,"\n";#匹配到的字符串的前面部分
    print $,"\n";#匹配到字符串的后面部分
    print $&,"\n";#匹配到的字符串
}

#result:
my 
 is  hello world,and  her name  is hello world
name

 

perl中的奇怪符号

标签:

原文地址:http://www.cnblogs.com/datacatcher/p/4211520.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!