正则表达式语法
摘要:
例子: 使用python import re # lookaround str = '1234567890' regex = re.compile('(?' print re.match('', str).group() print re.match('', str).group() 使用perl #!/usr/bin/perl undef $/; # En... 阅读全文
posted @ 2007-09-15 20:43 cutepig 阅读(1034) 评论(0) 推荐(0) 编辑