Webスクレイピングで検索フォームに文字を入したい
7 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
この質問を御覧頂きありがとうございます。
Matlabを用いてWebスクレイピングを行いたく、その一つとして検索フォームに文字を入力したいと考えています。
イメージとしては下図のようにしたいと考えています。(画像は手動で入力しました。)
この場合、どういったコードになるのでしょうか?
webwriteを検討しましたが上手くいかなかったため質問いたしました。
ご教示いただければ幸いです。
0 Commenti
Risposta accettata
Shoumei
il 13 Giu 2022
Google検索した時のURLをご覧ください。検索キーワードが含まれているのに気づくと思います。
こちらのコードで出来るのではないでしょうか?
baseURL = "https://www.google.com/search?q="
searchString = "Matlab"
url = baseURL+searchString
rowStr = webread(url)
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Web アクセス in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!