var result=list.select(element=>element.split['_']).list();
/* I want to extract the part of the file name from a list of file names */
我有一个文件名数组,我想从数组中为每个文件名提取部分名称
例子:
0-policy001_Printedlabel.pdf
1-policy002_Printedlabel.pdf
2-policy003_Printedlabel.pdf
3-policy004_Printedlabel.pdf
现在我想使用 Linq 从上面的数组中提取一个数组,这只给了我
政策001,政策002,政策003,政策004
你能帮我么?我是 lambda 表达式的新手。