Can someone help me with a regex validator pattern in Angular Formbuilder to ensure that the field CityStateZip contains at least one comma as a special character?
this.editAddressForm = this.formBuilder.group({
'CustomerName': [null, [Validators.maxLength(50)]],
'UnitNumber': [null, [Validators.maxLength(50)]],
'StreetAddress': [null, [Validators.required, Validators.maxLength(50)]],
'CityStateZip': [null, [Validators.required, Validators.maxLength(50)]]
})