Me gustaría buscar un texto de la respuesta y extraer de texto a texto.
var resp = UrlFetchApp.fetch("https://www.w3schools.com/tags/tryit.asp?filename=tryhtml_select"); var response = resp.getContentText();tengo que analizar esta respuesta
<!DOCTYPE html> <html> <body> <h1>The select element</h1> <p>The select element is used to create a drop-down list.</p> <form action="/action_page.php"> <label for="cars">Choose a car:</label> <select name="cars" id="cars"> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="opel">Opel</option> <option value="audi">Audi</option> </select> <br><br> <input type="submit" value="Submit"> </form> <p>Click the "Submit" button and the form-data will be sent to a page on the server called "action_page.php".</p> </body> </html>Necesito texto y valores, así que creo algo como esto.
text to search = "<select name="cars" id="cars">" start text = "<option value=" end text = "</select>"texto a extraer y exportar en dos columnas
volvo Volvo saab Saab opel Opel audi Audi¿Cómo acercarse correctamente?