I am trying to extract a part of a string in C#, but am not sure how to accomplish this. I imagine Regex, but being a complete RegEx noob I figured I would ask the community for some help.
I have a string much like the one below:
Unit Code : Billing Period : Billing Date : Due Date : Total Amount Due : STATEMENT OF ACCOUNT Page No.: Page 1 of 2 July 2016 1S-D-0303 07/07/2016 JOHN DOE Unit 303D, Building name, CITY NAME
I am looking to extract the number "2" from the "Page 1 of 2" statement, as well as the "1S-D-0303" and "07/07/2016" part.
I try hope someone out there can help, as I am pretty much stuck and Googling hasn't gotten me anywhere.