the following sed syntax delete the first @ character if exist in string
sed 's/^@\(.*\)/\1/'
How to change the follwoing sed syntax in order to delete the third character? For example :
In the following line I need to delete the third character @
line=AB@CDEF
sed syntax need to verify if the third character is: @ and if it true then to delete the @ from the line
Yael