发布时间:2012-12-19 20:22:27
Perl 中的正则表达式 1 正则表达式的三种形式 首先我们应该知道 Perl 程序中,正则表达式有三种存在形式,他们分别是: 匹配:m/<regexp>/ (还可以简写为 /<regexp>/ ,略去 m) 替换:s/<pattern>/<replacement>/ 转化:tr/<pattern>/<replacemnt>/ 这三种形式一般都和 =~ 或 !~ 搭配使用(其中 "=~" 表示相匹配,在整条语句中读作 does,"!~" 表示不匹配,在整条语句中读作 ......【阅读全文】
发布时间:2012-12-19 20:22:15
1,indexposition = index (string, substring, position)返回子串substring在字符串string中的位置,如果不存在则返回-1。参数position是可选项,表示匹配之前跳过的字符数,或者说从该位置开始匹配。例子如下:[root@localhost ~]# echo -n '/var/fap/test/123' | perl -ne '$rev=index($_, "a"); print $rev,"\n";'2[root@localhost ~]# echo -n '/var/fap/test/123' | perl -ne '......【阅读全文】
发布时间:2012-12-19 20:21:50
XPath语法 [ 2006-9-21 15:41:00 | By: 翻云刀 ] XPath uses path expressions to select nodes or node-sets in an XML document. The node is selected by following a path or steps.XPath使用路径表达式来选择XML文档的节或是节集。顺着路径或步骤来选择节。 The XML Example DocumentXML实例文档 We will use the ......【阅读全文】