Split string to get Date and textI have to process text file like that:
text 01/01/1970 text 02/01/1970 ... etc.
I want the output to be the following data: according to the docs, wrapping the string you're splitting on in () (making it a capture group) will result in these captures being included in the array.
stackoverflow8/12/2015 4:38:43 PM
Splitting Link using RegExi want to find category from the link. I am breaking the link into array using Regex.
admin3/31/2015 5:40:43 PM
Simple Regex.Split sample - remove digitsUser \d+ for remove digits and \D+ for remove text.
admin3/30/2015 12:45:18 AM