faustf Posted December 7, 2016 Posted December 7, 2016 hi guys how is possible to take only a text bye this html code? <p data-mce-style="margin-top: 5.0pt; margin-right: 1.5pt; margin-bottom: 5.0pt; margin-left: 37.55pt; mso-pagination: widow-orphan;" style="margin: 5pt 1.5pt 5pt 37.55pt; text-align: center;"><br> </p> <p style="text-align: center;"> <span style="font-size: 16px; font-family: Arial;"><strong>Caratteristiche:</strong></span><br> <br> <span style="font-size: 16px; font-family: Arial;"> Contenuto del pacco:</span><br> <br> <span style="font-size: 16px; font-family: Arial;">nr. 1 barattolo gel builder ricostruzione unghie </span><br> <br> <span style="font-size: 16px; font-family: Arial;"> peso del barattolo 56 gr 2oz</span><br> <br> <span style="font-size: 16px; font-family: Arial;"> nuovo da usare con lampada UV</span><br> <br> <span style="font-size: 16px; font-family: Arial;"><span style="color: rgb(255, 51, 51);"> </span><br> </span> </p> <p style="text-align: center;"><span style="font-size: 16px; font-family: Arial;"><br> </span> </p> <p style="text-align: center;"><span style="font-size: 16px; font-family: Arial;"><br> </span> </p> i tryed with this code but is not good is possible take in one time ? Local $aLTesto_body_Html=StringRegExp($result[2], '(.*?)</span><br>', $STR_REGEXPARRAYGLOBALMATCH) ; titolo thankz at all
SadBunny Posted December 7, 2016 Posted December 7, 2016 What do you mean by "only a text"? Can you specify the exact input that's going into the StringRegExp (the $result[2]) and the exact output you're trying to achieve? Roses are FF0000, violets are 0000FF... All my base are belong to you.
faustf Posted December 7, 2016 Author Posted December 7, 2016 only this in result nr. 1 barattolo gel builder ricostruzione unghie peso del barattolo 56 gr 2oz nuovo da usare con lampada UV
jguinch Posted December 7, 2016 Posted December 7, 2016 (edited) Local $aLTesto_body_Html=StringRegExp($result[2], '<span[^>]+>([^<]+)</span>', $STR_REGEXPARRAYGLOBALMATCH) Edited December 7, 2016 by jguinch faustf 1 Spoiler Network configuration UDF, _DirGetSizeByExtension, _UninstallList Firefox ConfigurationArray multi-dimensions, Printer Management UDF
mikell Posted December 7, 2016 Posted December 7, 2016 (edited) Msgbox(0,"", StringRegExpReplace(FileRead("1.txt"), '<.*?>\R?|&[^;]+;', "") ) Edited December 7, 2016 by mikell faustf 1
mikell Posted December 8, 2016 Posted December 8, 2016 Hmm my code should have been more specific to remove only the " " and not other possible html special chars Msgbox(0,"", StringRegExpReplace(FileRead("1.txt"), '<.*?>\R?| ', "") ) faustf 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now