forum

Home / DeveloperSection / Forums / How to split a string stored in list<*> , then insert to same list using linq style or lambda ?

How to split a string stored in list<*> , then insert to same list using linq style or lambda ?

Royce Roy270805-Oct-2013

I have Writen o code using linq

var result=from m in driver_list select(m.Email,m.LisancePlate)

My code Output is like this

sample1@company.com;sample2@company.com----34 KZ 7898 sample3@company.com;sample2@company.com---- 34 TZK 6785

I want to a new output using my result like this sample1@company.com---34 KZ 7898 sample2@company.com---34 KZ 7898 sample3@company.com---34 TZK 6785 sample2@company.com---34 TZK 6785


Updated on 05-Oct-2013

Can you answer this question?


Answer

1 Answers

Liked By