i want to extract data between Deliver To and BILLING
Deliver To ABC
2345 IL Ave
Plaza. 301
chica
BILLING
i want to extract data between Deliver To and BILLING
Deliver To ABC
2345 IL Ave
Plaza. 301
chica
BILLING
Hi @T_Y_Raju
Input= "Deliver To ABC
2345 IL Ave
Plaza. 301
chica
BILLING"
Output= System.Text.RegularExpressions.Regex.Match(Input,"(?<=Deliver To\s+)[\s\S]*?(?=\s+BILLING)").Value
Regards
Thank you it works thanks for u r help
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.