py匹配字串中間的字串

hai0808發表於2017-12-05

python 正規表示式,怎樣匹配以某個字串開頭,以某個字串結尾的情況?

str ="abcdefg123213qwe"

正規表示式:^abc(.*?)qwe$

dbconfig = open("./config.xml", "r")
configStr = dbconfig.read();


pattern = re.compile("<HostName>(.*?)</HostName>")
HostName = re.findall(pattern, configStr)[0]

相關文章