I want to split a string value according to <br/>
An example string:
""* Minimum 3 digits allowed<br/>" * Maximum 9 digits & 2 precisions allowed<br/>"
in the above case there will be two values in array
1. * Minimum 3 digits allowed
2. * Maximum 9 digits & 2 precisions allowed
And need to find the length of the string from the array (which is already splitted) which have the maximum length within the array.
So that answer will be 40
Fiddle