Thanks a lot to MRAB and Susan...
It work great!!!.
I have googled a lot for a solution for with no result. Probably this is the only post solving this.
Now, I can fix the google contacts csv export file (, separated and quoted notes with \r\n inside) for a excel .csv readable (; separated in spain, with quoted fields with \r lines).
This is the ahk code to do that:
FileRead, String, contacts.csv
String := RegExReplace(String, "(""[^""]*""|[^"",]*)?," , "$1;" ) ; change ',' by ';' outside quotes
String := RegExReplace(String, "\n(?=[^""]*""([^""]*""[^""]*"")*([^""]*)\z)" , "" ) ; remove `n (`r`n) inside quotes (left `r lines). Thanks to Aussie Susan @ regexadvice.com
FileDelete, contacts_fixed.csv
FileAppend, %String%, contacts_fixed.csv