问题描述
解决方案是使用正则表达式:
import re
r = re.compile('Master(.*?)thon')
m = r.search(str1)
if m:
lyrics = m.group(1)
解决方法
就像我有一个字符串一样 str1 = "IWantToMasterPython"
如果我想"Py"
从上面的字符串中提取。我写:
extractedString = foo("Master","thon")
我想做所有这一切,因为我正试图从HTML页面提取歌词。歌词写得像<div class = "lyricbox"> ....lyrics goes
here....</div>
。
关于如何实施的任何建议。