Hi i have a string array, such as:
string[] test = {"one@test.com","@test.com","@contoso.com"}
And I want to modify values only where the address has no first portion that is "@domain.com", so the example return would be:
string[] test2 = {"one@test.com","*@test.com","*@contoso.com"}
ANy ideas how to do this please?