【前提】下記文字列があったとします。
<section class="post-content" itemprop="text"> あいうえお かきくけこ <h3>ABCD</h3> </section>【やりたいこと】
あいうえお
かきくけこ
のみ抽出したいです。
何卒よろしくお願い申し上げます。
【試してみたこと】
target = '<h3>'
idx = contents.find(target)
content = contents[:idx]
【エラー】
File "C:\Users\info\ドキュメント\python_practice\wp_auto_login_post.py", line 18, in <module>
content = contents[:idx]
File "C:\Users\info\AppData\Local\Packages\PythonSoftwareFoundation.Python.3.9_qbz5n2kfra8p0\LocalCache\local-packages\Python39\site-packages\bs4\element.py", line 1486, in getitem
return self.attrs[key]
TypeError: unhashable type: 'slice'
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/11/15 12:48
2021/11/15 12:58 編集
2021/11/15 13:05
2021/11/15 13:06
2021/11/15 13:15
2021/11/15 13:33
2021/11/15 13:34
2021/11/15 13:53
2021/11/15 14:49
2021/11/15 15:10
2021/11/15 15:40
2021/11/15 15:45