I'm trying to parse a few <input ../> tags but this regex only work for input tags that are on separate lines:
NSString *html = @"html with multiple lines containing a few lines with input elements only and then a few lines with multiple input elemets";
NSString *regex = @"(?i:<input.*name=\"(.*))\".*value=\"(.*)\".*/>";
NSArray *names = [html componentsMatchedByRegex:regex capture:1];
NSArray *values = [html componentsMatchedByRegex:regex capture:2];
This is working fine but it does NOT work on the lines that consist of multiple <input .../> elements.
What's wrong with my regex ? Also, This regex won't work if the name and value attributes are not in correct order.. I wan't it to work regardless of order and if there's other attributes specified.:
<input id="foo" value="bar" name="something"/>
<input value="foo" id="y" name="bar" other_attribute="x"/>
Can someone please help with this regex ? I've looked at the docs but I can't figure it out.
NSString *html = @"html with multiple lines containing a few lines with input elements only and then a few lines with multiple input elemets";
NSString *regex = @"(?i:<input.*name=\"(.*))\".*value=\"(.*)\".*/>";
NSArray *names = [html componentsMatchedByRegex:regex capture:1];
NSArray *values = [html componentsMatchedByRegex:regex capture:2];
This is working fine but it does NOT work on the lines that consist of multiple <input .../> elements.
What's wrong with my regex ? Also, This regex won't work if the name and value attributes are not in correct order.. I wan't it to work regardless of order and if there's other attributes specified.:
<input id="foo" value="bar" name="something"/>
<input value="foo" id="y" name="bar" other_attribute="x"/>
Can someone please help with this regex ? I've looked at the docs but I can't figure it out.