P pixelpop Active Member Licensed User Longtime User Aug 29, 2012 #1 Using XMLSax, is it possible to parse this line into its individual parts? <photo width="512" height="403" filename="\photos\ff64100841ac9318190f6a706700c7dd.jpg" type="jpg_large"/> Thanks.
Using XMLSax, is it possible to parse this line into its individual parts? <photo width="512" height="403" filename="\photos\ff64100841ac9318190f6a706700c7dd.jpg" type="jpg_large"/> Thanks.
NJDude Expert Licensed User Longtime User Aug 29, 2012 #2 It might be possible using the Parser_StartElement and get the Attributes: e.g. B4X: Sub Parser_StartElement(Uri As String, Name As String, Attributes As Attributes) ... ... Upvote 0
It might be possible using the Parser_StartElement and get the Attributes: e.g. B4X: Sub Parser_StartElement(Uri As String, Name As String, Attributes As Attributes) ... ...
P pixelpop Active Member Licensed User Longtime User Aug 29, 2012 #3 The Parser_StartElement suggestion worked perfectly! Thanks. Upvote 0