Created
August 21, 2017 14:25
-
-
Save aarshtalati/63a07c3547fece8fe67aa661eb4e6b3a to your computer and use it in GitHub Desktop.
C# Split CSV string
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
string str = "Tom Cruise, Scott, ,Bob | at"; | |
IEnumerable<string> names = str | |
.Split(new char[]{',', '|'}) | |
.Where(x=>x!=null && x.Trim().Length > 0) | |
.Select(x=>x.Trim()); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment