Hello all,
i am reading table in word document using c#.
I need to split cell value like below
Table
|
Z row value should be split like below
My code
Note_Text=
SHORT C6936,C6933,C6932,R6941,R6942,R6935,R6936,C6934\rOPEN R6935,R6936\r\a
var Note_List = Note_Text.Split(',').ToList();
List -1
SHORT
C6936
C6933
C6932
R6941
R6942
R6935
List-2
OPEN
R6935
R6936
Nitin SontakkePosted Jan 30, 2018, 10:53 AM
Nitin SontakkePosted Jan 30, 2018, 11:20 AM
Rupesh KahanePosted Jan 30, 2018, 11:16 AM