有n個文件。在每個文件中有多個列,我只能選擇前兩個。我必須在這兩列的基礎上將這些n個文件與另一列合併。該值將像一個字符串。字符串的長度取決於文件的數量。例如,假設有4個文件, 文件1:在兩列的基礎上合併兩個數據集
cat dog
lion ele
mice hello
new lion
ele that
文件2:
cat lion
mice hello
cub pet
old lion
文件3:
new lion
cub pet
cat dog
hello cat
FILE4:
ele that
hello cat
new old
我想生成一個新文件,
cat dog PAPA
lion ele PAAA
mice hello PPAA
new lion PAPA
ele that PAAP
cat lion APAA
cub pet APPA
old lion APAA
new lion AAPA
hello cat AAPP
new old AAAP
如果它們不存在於第i個文件中,那麼該值應該在位置'i'處爲'A',否則它將爲'P'。這是如何形成字符串。
請包括您在嘗試自己解決此問題時使用的代碼。 –
@RichardScriven我已經嘗試過使用合併功能,但是我無法找出鋤頭分配「A」或「P」並形成一個字符串。 – birk