Domande taggate «concatenation»

Si riferisce all'unione di due o più elementi in un singolo elemento.






6
Come concatenate gli elenchi in C #?
Se ho: List<string> myList1; List<string> myList2; myList1 = getMeAList(); // Checked myList1, it contains 4 strings myList2 = getMeAnotherList(); // Checked myList2, it contains 6 strings myList1.Concat(myList2); // Checked mylist1, it contains 4 strings... why? Ho eseguito codice simile a questo in Visual Studio 2008 e ho impostato i punti …
171 c#  arrays  list  concatenation 

12
Python concatena i file di testo
Ho un elenco di 20 nomi di file, come ['file1.txt', 'file2.txt', ...]. Voglio scrivere uno script Python per concatenare questi file in un nuovo file. Potrei aprire ogni file f = open(...), leggere riga per riga chiamando f.readline()e scrivere ogni riga in quel nuovo file. Non mi sembra molto "elegante", …









Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.