Webスクレイピングで検索フォームに文字を入したい
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Huge Grave
el 12 de Jun. de 2022
Respondida: Shoumei
el 13 de Jun. de 2022
この質問を御覧頂きありがとうございます。
Matlabを用いてWebスクレイピングを行いたく、その一つとして検索フォームに文字を入力したいと考えています。
イメージとしては下図のようにしたいと考えています。(画像は手動で入力しました。)
この場合、どういったコードになるのでしょうか?
webwriteを検討しましたが上手くいかなかったため質問いたしました。
ご教示いただければ幸いです。
0 comentarios
Respuesta aceptada
Shoumei
el 13 de Jun. de 2022
Google検索した時のURLをご覧ください。検索キーワードが含まれているのに気づくと思います。
こちらのコードで出来るのではないでしょうか?
baseURL = "https://www.google.com/search?q="
searchString = "Matlab"
url = baseURL+searchString
rowStr = webread(url)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Web アクセス en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!