我有一个字符串
str = <iframe width="420" height="315" src="https://www.youtube-nocookie.com/embed/jc8zayasOB8" frameborder="0" allowfullscreen></iframe>
我希望在src中使用子字符串 - 即&#39; https://www.youtube-nocookie.com/embed/jc8zayasOB8&#39;。那么我们怎样才能做到这一点。 我试过这个
my_string="hello python world , i'm a beginner "
print my_string.split("world",1)[1] .
但是它给出了世界上所有的字符串。我只想要src中的子字符串。
答案 0 :(得分:1)
我的解决方案:
string = '<iframe width="420" height="315" src="https://www.youtube-nocookie.com/embed/jc8zayasOB8" frameborder="0" allowfullscreen></iframe>'
start_src = string.find('src="')
first_quote = string.find('"', start_src)
end_quote = string.find('"', first_quote+1)
print string[first_quote+1:end_quote]