Home > Blockchain >  Google Sheets ImportXML Split Definitions
Google Sheets ImportXML Split Definitions

Time:12-10

I made a enter image description here


update:

=IMPORTXML("https://www.learnersdictionary.com/definition/"&A4,
 "//span[@class='def_text']")

enter image description here

or if you want just first one try:

=INDEX(IMPORTXML("https://www.learnersdictionary.com/definition/"&A4,
 "//span[@class='def_text']"), 1, 1)
  • Related