Estoy tratando de verificar si mi salida contiene URL o no si contiene Quiero hacerlo así { "title": "Google", "href": "www.google.com" }
entonces cuando hago console.log(data) los datos de salida se ven así
generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc. https://www.google.com/ random@gmail.com, 10 https://stackoverflow.com/questions/  4 default value radioasí que estoy tratando de verificar si mis datos contienen URL o no
y si contiene la url, entonces debería crear un objeto json que contenga el título y href como clave y en el título el valor inicial más grande que se vea así
{ "title": "Google", "href": "www.google.com" } { "title": "Stackoverflow", "href": "https://stackoverflow.com/questions/" }Probé este código que obtuve de Internet
if (new RegExp("([a-zA-Z0-9]+://)?([a-zA-Z0-9_]+:[a-zA-Z0-9_]+@)?([a-zA-Z0-9.-]+\\.[A-Za-z]{2,4})(:[0-9]+)?(/.*)?").test(data)) { console.log(data); }aquí también estoy recibiendo todo esto
https://www.google.com/ random@gmail.com, https://stackoverflow.com/questions/ solo quiero url no otras partes