This would be the sample text:
<option value="USD">American Samoa, United States Dollar (USD)</option>
<option value="EUR">Andorra, Euro (EUR)</option>
<option value="AOA">Angola, Kwanza (AOA)</option>
<option value="XCD">Anguilla, East Caribbean Dollar (XCD)</option>
<option value="XCD">Antigua and Barbuda, East Caribbean Dollar (XCD)</option>
<option value="ARS">Argentina, Peso (ARS)</option>
This is my try:
<option selected="selected" value="[A-Z]{3}">(?<Test>).+</option>
.
The problem is, it only matches the first occurrence it finds. While I want it to get them all. What am I missing in my try?