I have strings that come like this:
"Cadastro,Novo"
"Cadastro,Editar"
"Cadastro,Excluir"
"Cadastro,Morfar"
"Cadastro,Etc"
"Entidade,Novo"
"Entidade,Editar"
"Entidade,Excluir"
"Entidade,Morfar"
"Entidade,Etc"
And I have 2 columns that I want to fill:
Coluna1 | Coluna2
The order should be as follows:
Coluna1 = Cadastro
Coluna2 = "Novo,Editar,Excluir,OqueVim"
But I can not repeat the Record value when I will concatenate the values in Column2.
Can anyone explain how to do this?
My code looks like this:
Class to Add Final Values
public class ListaFinal
{
public string valor1 { get; set; }
public string valor2 { get; set; }
}
Code:
var listaFinal = new List<ListaFinal>();
var adiciona = new List<string>();
adiciona.Add("Cadastro.Novo");
adiciona.Add("Cadastro.Editar");
adiciona.Add("Cadastro.Deletar");
adiciona.Add("Cadastro.Excluir");
adiciona.Add("Cadastro.ALGO");
adiciona.Add("Entidade.Item1");
adiciona.Add("Entidade.Enti");
adiciona.Add("Entidade.dade");
adiciona.Add("Entidade.outro");
adiciona.Add("Entidade.test");
string coluna1 = "";
string coluna2 = "";
foreach (var x in adiciona)
{
var aux = "";
coluna2 = x.Split('.')[1];
if (string.IsNullOrEmpty(coluna1))
{
coluna1 = x.Split('.')[0];
listaFinal.Add(new ListaFinal
{
valor1 = coluna1,
valor2 = coluna2
});
}
else
{
aux = x.Split('.')[0];
if (aux != coluna1)
{
coluna1 = aux;
listaFinal.Add(new ListaFinal
{
valor1 = coluna1,
valor2 = coluna2
});
}
}
coluna1 = coluna1;
};
Final result: 2 items in the list, with the fields before the comma without repeating, but I have not concatenated the values after the comma.