I want to apply a this function hideEmail to a specific column of my csv file (large file) using python
Example of function :
def hideEmail(email):
#hide email
text = re.sub(r'[^@.]', 'x', email)
return text
Csv file (large file > 1gb):
id;Name;firstName;email;profession
100;toto;tata;[email protected];developer
101;titi;tete;[email protected];doctor
..
..