<input class="input-xlarge focused" id="listCode" name="listCode" readonly="true" type="text" value="001">
</input>
<input class="input-xlarge focused" id="type" name="type" readonly="true" type="text" value="002">
</input>
<input class="input-xlarge focused" id="yyc" name="yyc" readonly="true" type="text" value="yyzz">
</input>
如何使用python 3.5的正则表达式获取每一行里面的name和value的值,并将name和value的值添加到字典.
最终的结果变为:
dict = {
'listcode':'001',
'type':'002',
'yyc':'yyzz'
}
或者不用正则用beautifulsoup是否可以实现? 哪位方便,麻烦指点一二。谢谢。
参考代码,BeautifulSoup的用法可以阅读官方文档