using System; using System.Text.RegularExpressions; class chapter8 { static void Main() { string words = "08/14/57 46 02/25/59 45 06/05/85 18" + "03/12/88 16 09/09/90 13"; string regExp1 = "(\\s\\d{2}\\s)"; MatchCollection matchSet = Regex.Matches(words, regExp1); foreach (Match aMatch in matchSet) Console.WriteLine(aMatch.Groups[0].Captures[0]); } }   Now let’s modify this program to search for dates instead of ages, and use a grouping construct to organize the dates. And write the c# code:

Microsoft Visual C#
7th Edition
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Joyce, Farrell.
Chapter14: Files And Streams
Section: Chapter Questions
Problem 17RQ
icon
Related questions
Question

using System;
using System.Text.RegularExpressions;
class chapter8 {
static void Main() {
string words = "08/14/57 46 02/25/59 45 06/05/85 18" +
"03/12/88 16 09/09/90 13";
string regExp1 = "(\\s\\d{2}\\s)";
MatchCollection matchSet = Regex.Matches(words,
regExp1);
foreach (Match aMatch in matchSet)
Console.WriteLine(aMatch.Groups[0].Captures[0]);
}
}

 

Now let’s modify this program to search for dates instead of ages, and use
a grouping construct to organize the dates. And write the c# code:

Expert Solution
steps

Step by step

Solved in 2 steps with 1 images

Blurred answer
Knowledge Booster
Unreferenced Objects
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT