I want only month name in month column but i am getting all data
Hello @nishant.akhare , If you get all data in single extration, you can Seperate the data by using the regex Method
Try it
system.Text.RegularExpressions.Regex.Match(YourStr,"(?<=Month\s:\s)[A-Za-z]+").tostring.trim
how to add this regex