I'm trying to parse following code:
<td class='postac'>Actelsar </td>
<td class='postac'>tabl. 80 mg 28 tabl.</td>
The input should be the text (without "<" sign) between "<td class='postac'> </td>
" tags and that starts with capital letter.
Regex: /<td class=\'postac\'>^[A-Z]+([^<]*)$<\/td>/s
The code above doesn't work. Thanks for your help.