How to work with comma-separated strings
Hi to all.
In this post we introduce with comma separated strings. how we can work with it and manipulate in our work.
string language= "C#,Java,Php,python;
now we convert it to string array.
string[] languageArray= language.Split(',');
foreach (string slanguage in languageArray)
{
//code what you want
//print slanguage
}
We can split comma separated string like this.also we can split any character with split function.
like language.Split('|');
Thanks for read post.
Any problem comment us.
Comments
Post a Comment