expect正则捕获返回结果

前端之家收集整理的这篇文章主要介绍了expect正则捕获返回结果前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

expect:

[plain] view plain copy
  1. expect-re"([0-9]*)([a-zA-Z]*)"
  2. send_user"numis$expect_out(1,string),stringis$expect_out(1,string)"

这里[0-9]*表示一个或多个数字, [a-zA-Z]*表示多个字母。()用于分组,它们分别存放在 $expect_out(1,string)和$expect_out(2,string)中。

pexpect:python中的expect

[plain] view plain copy

    child.expect("([0-9]*)([a-zA-Z]*)
  1. print"numis%s,stringis%s"%(child.match.group(1),child.match.group(2))
原文链接:https://www.f2er.com/regex/363093.html

猜你在找的正则表达式相关文章