menu
Tatoeba
language
নথিভুক্ত হন লগইন করুন
language বাংলা
menu
Tatoeba

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 ১৮ এপ্রিল, ২০১০ ১৮ এপ্রিল, ২০১০ ৮:২২:৩৭ 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 ...