Need Help with the below Scenario
Remarks:
No Correct;
ASSISTEDMPUN:
678788737;
RESEARCH FILE:
balance
Timestamp:
07/20/2023 15:40
PM EDT
Need Help with the below Scenario
Remarks:
No Correct;
ASSISTEDMPUN:
678788737;
RESEARCH FILE:
balance
Timestamp:
07/20/2023 15:40
PM EDT
Use the below regular expression
System.Text.RegularExpressions.Regex.Matches(yourstringinput.ToString,“((?<=Timestamp:)\n+.*\n+\w+)”)
\d+.\d+.\d+\s+\d+.\d+\s+[A-Z]+(?<=\s+[A-Z]+)
or use the below syntax in assign
System.Text.RegularExpressions.Regex.Matches(yourstringinput.ToString,"(\d+.\d+.\d+\s+\d+.\d+\s+[A-Z]+(?<=\s+[A-Z]+))")
Hope it helps!!
You can try this
(?<=Timestamp:\s).*\n[A-z]{2}
Cheers