I have done this select
<select [(ngModel)]="phoneCode" name="paises">
<option *ngFor="let pais of (paises$ | async)" [value]="pais.phonecode">{{pais.nicename}} (+{{pais.phonecode}})</option>
</select>
I need to show the selected option with only the code (without the country name). How can I do it? I have it like the first picture, I need it like the last one.

