加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

Test Whether a Regex Matches the Subject String Entirely (测

发布时间:2020-12-14 01:46:38 所属栏目:百科 来源:网络整理
导读:需求: 字符串中只有regex pattern 方法: 1. Python a. Global function import re if re.search("regex patternZ",subject): print "Match Pass!" else: print "Match Fail!" b. Compiled object import re reobj = re.compile("regex patternZ") if reo

需求:

字符串中只有regex pattern


方法:

1. Python

a. Global function

import re

if re.search("regex patternZ",subject):

print "Match Pass!"

else:

print "Match Fail!"


b. Compiled object

import re

reobj = re.compile("regex patternZ")

if reobj.search(subject):

print "Match Pass!"

else:

print "Match Fail!"


2. Tcl

set result [regexp -linestop {Aregexp patternZ} $subject]

if {$result == 1} {

puts "Match Pass!"

} else {

puts "Match Fail!"

}

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读