If you want to apply conditional validation on 'City Code' or 'Country Code' then you need to add this input as 'Delhi'.
{{locationForm.controls?.areaName?.errors?.alphaNumeric.message}}
This allowed whitespace in alpha Numeric validation
{{locationForm.controls?.flatAddress?.errors?.alphaNumeric.message}}
Shows custom message
{{locationForm.controls?.postalAddress?.errors?.alphaNumeric.message}}
If you want to apply conditional validation on this field then you need to add 'areaName' input as 'Delhi'.
Conditional Expression with type 'string'
{{locationForm.controls?.cityCode?.errors?.alphaNumeric.message}}