跳到内容

Perl 编程/关键字/m

来自维基教科书,开放的书籍,开放的世界
上一个:lt 关键字 下一个:map

m关键字

[编辑 | 编辑源代码]

m是一个正则表达式匹配运算符,也用作m//.

  m/…[/]
 # Shorthand form uses // to quote the regular expression
 $Text =~ /search words/;

 # The m function allows you to use your choice of quote marks
 $Text =~ m|search words|;
 $Text =~ m{search words};
 $Text =~ m<search words>;
 $Text =~ m#search words#;

另请参阅

[编辑 | 编辑源代码]
上一个:lt 关键字 下一个:map
华夏公益教科书