I wonder if it's possible to use split to devide a string with several parts that are separated with a comma, like this:
title, genre, director, actor
I just want the first part, the title of each string and not the rest?
|
I wonder if it's possible to use split to devide a string with several parts that are separated with a comma, like this:
I just want the first part, the title of each string and not the rest? |
|||
|
|
vals will give you the title |
|||
|
|
Actually, there is a better way to do it than split:
And as extension methods:
Usage:
|
|||||||||||||
|
|
You can do it:
Also you can do it this way:
|
|||||||||||||||
|