I have a text string and I intend to extract the "date" after ",", i, e, September 1, 2015
Distribution / Stratification Report 10835.0000 Report for the reporting period 228, 1 Sept. 2015
I wrote the regex code below and it returns an empty match.
`Regex regexdate = new Regex(@"\Allocation/bundle\s+\report\s+\S+\s+\S+\s+\S+\s+\S+\s+\S+\,\+(\S)+\s+(\S)+\s+(\S)");
Can you talk about what's wrong with the Regex format that I mentioned?
source share