This might be a very basic question and I know various ways to accomplish what I want. But, I would like to know if it is possible to use wildcards in *ngIf comparisons.
Imagine following code:
<ng-container *ngIf="test == 'teststring'">
</ng-container>
I would like to know if it is possible to for example use:
<ng-container *ngIf="test == '*teststring'">
</ng-container>
So that it could be 0teststring or 1teststring.
Thank you in advance!