3
做在Selenium Doc他們已經使用^
,$
和*
以前的=
運營商在下面的代碼:但他們沒有解釋爲什麼這樣特殊符號
soup.select('a[href="http://example.com/elsie"]')
# [<a class="sister" href="http://example.com/elsie" id="link1">Elsie</a>]
soup.select('a[href^="http://example.com/"]')
# [<a class="sister" href="http://example.com/elsie" id="link1">Elsie</a>,
# <a class="sister" href="http://example.com/lacie" id="link2">Lacie</a>,
# <a class="sister" href="http://example.com/tillie" id="link3">Tillie</a>]
soup.select('a[href$="tillie"]')
# [<a class="sister" href="http://example.com/tillie" id="link3">Tillie</a>]
soup.select('a[href*=".com/el"]')
# [<a class="sister" href="http://example.com/elsie" id="link1">Elsie</a>]
該鏈接不在我的桌面上打開。你能告訴我在我的例子中它有什麼作用嗎? –
哦!神開了!有了這個概念!感謝您的幫助:) –
我可以對[Push data]有一些想法(http://stackoverflow.com/questions/14171223/push-the-excel-data-to-access-database-using-pyhton2-7 #comment19636110_14171223) –