I am in need of parsing field name and values from an html form to add to my db. I know i can go and do a find "input name='" then start another find to find the closing "'" and get the data via mid function then do the same for value via find "value='" I was wondering if there is an easier way to loop the doc and extract all input names and the associated values ?
Below is a sample of what my page to parse looks like
<input name='a_glare' value='B' class='inputbox-highlighted-false' size='1' maxlength='1'>
</td>
<td align="center">
<input name='a_testani' value='' class='inputbox-highlighted-false' size='1' maxlength='1'>
</td>
<td align="center">
<input name='a_tksig' value='EC' class='inputbox-highlighted-false' size='2' maxlength='2'>
</td>
<td align="center">
<input name='a_sacnon' value='' class='inputbox-highlighted-false' size='1' maxlength='1'>
</td>
<td align="center">
<input name='a_ot' value='' class='inputbox-highlighted-false' size='1' maxlength='1'>
</td>
<td align="center">
<input name='a_ovlp' value='' class='inputbox-highlighted-false' size='1' maxlength='1'>
For parsing html, I would recommend using JSoup instead of regular expressions. I just started using JSoup and found it extremely simple to use. Just download the jar and add it to your application class path.
I am not an expert by any means, but was able to print all of the "input" fields from your sample html page using this snippet:
(.. and yes, despite your moniker, I am suggesting "JSoup4You" )
Update:
The
fields
variable is an array. So you can loop through it in cfml the same way. It seems like double work, but if you prefer, you can extract the input names and values into your own array of structures (or whatever CF construct you like). For example: