menu
तातोएबा
language
पंजीकरण लॉग इन
language हिन्दी
menu
तातोएबा

chevron_right पंजीकरण

chevron_right लॉग इन

ब्राउज़

chevron_right यादृच्छिक वाक्य दिखाएँ

chevron_right भाषा के अनुसार ब्राउज़ करें

chevron_right सूची के अनुसार ब्राउज़ करें

chevron_right टैग के अनुसार ब्राउज़ करें

chevron_right ऑडियो ब्राउज़ करें

समुदाय

chevron_right वाल

chevron_right सभी सदस्यों की सूची

chevron_right सदस्यों की भाषाएँ

chevron_right देशी वक्ता

search
clear
swap_horiz
search
blay_paul blay_paul 18 अप्रैल 2010 18 अप्रैल 2010 को 8:22:37 pm UTC flag Report link पर्मालिंक

.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 ...