@ADITYA_MUKHERJEE
row(1).ToString.Split(Environment.NewLine.ToCharArray,StringSplitOptions.RemoveEmptyEntries)
it is taking 2nd row sencond column to a string splits the string in a string array by all newLine chars
(0).Split(“:”.ToCharArray,StringSplitOptions.RemoveEmptyEntries)
it is taking from above retrurned string array the first item and splits it based on : into a string array
(1).Trim
from from second received split array it takes the second item, removes the leading and trailing spaces
I was wondering you are trying to understand the expression or looking for solution if so then use this regular expression that gives you output
This is for your reference
if this solves your query then mark this as solution.
Happy Automation!’
Regards,
Aditya