I want to remove special characters from the starting of the string only.
i.e, if my string is like {abc@xyz.com
then I want to remove the {
from the starting. The string shoould look like abc@xyz.com
But if my string is like abc{@xyz.com
then I want to retain the same string as it is ie., abc{@xyz.com
.
Also I want to check that if my string has @ symbol present or not. If it is present then OK else show a message.