menu
Tatoeba
language
Registrera Logga in
language Svenska
menu
Tatoeba

chevron_right Registrera

chevron_right Logga in

Bläddra

chevron_right Visa framslumpad mening

chevron_right Bläddra efter språk

chevron_right Bläddra efter lista

chevron_right Bläddra efter tagg

chevron_right Bläddra bland ljudinspelningar

Community

chevron_right Vägg

chevron_right Medlemslista

chevron_right Medlemmarnas språk

chevron_right Modersmålstalare

search
clear
swap_horiz
search
blay_paul blay_paul 18 april 2010 18 april 2010 20:22:37 UTC flag Report link Permalänk

.csv format in downloads.

Just a note for those using the downloads. You use \ as the escape character.

This is a line from your csv file:

"4923";"1512";"「信用して」と彼は言った。";"\"Trust me,\" he said.";"信用 為る|1(する){して} と|1 彼|2(かれ)[01] は|1 言う{言った}"

This is how it appears when loaded into Excel.

4923 1512 「信用して」と彼は言った。 \Trust me,\" he said." 信用 為る|1(する){して} と|1 彼|2(かれ)[01] は|1 言う{言った}

Excel uses double " marks when escaping quotes. The same line in csv for Excel would be...

"4923";"1512";"「信用して」と彼は言った。";"""Trust me,"" he said.";"信用 為る|1(する){して} と|1 彼|2(かれ)[01] は|1 言う{言った}"

Which imports to Excel as follows:

4923 1512 「信用して」と彼は言った。 "Trust me," he said. 信用 為る|1(する){して} と|1 彼|2(かれ)[01] は|1 言う{言った}

I think the 'escaping with extra quote mark' may be the more standard version ...