I am posting a form with multiple text boxes in it. The value of each text
box contains 2 values that are delimited by a"|". I am not sure how to pull
them apart. example...
<input type="text" name="newsPriority1" size="2" maxlength="2" value="1|53">
<input type="text" name="newsPriority2" size="2" maxlength="2" value="2|54">
How do I parse the number before the "|" and the number after?