How to get regex pattern

Hi can anyone provide me the regex pattern for below data
requirement is i have data where in i want the data only of City and State the last line is of city and state Starting point of the data is Deliver To and i don’t want the zip code in the output

Deliver To RAJU
111456 SW 60TH ST
MAIMI, FL 33456

Hi @T_Y_Raju

\n([A-Z].*)(?=\s+\d+)

Regards

Hi @T_Y_Raju

Try this

([A-Z]+)(?=\,)

(?<=\,\s+)[A-Z]+

Regards,

here i see second line bule highlighted data also being copied

i want city and state together

@T_Y_Raju

([A-Z]+\,\s+[A-Z]+)

the data is not getting copied please check the below flow @T_Y_Raju

Input = "Deliver To RAJU
111456 SW 60TH ST
MAIMI, FL 33456"

Output = System.Text.RegularExpressions.Regex.Match(Input,"\n([A-Z].*)(?=\s+\d+)").Value.Trim()

Output:

Regards

ok thank you i will check