Utah C++ Programmers has released a video on Matching Text:
Matching Text in C++
by Richard Thomson
From the video description:
Many times in our code we need to validate a given piece of text against some pattern. We may only interested in validating that the text matches or we may be interested in extracting matched substrings from the whole string. We can write code from scratch to perform this matching or we can use libraries to tackle the problem. What library options are available to us in C++?
This month, Richard Thomson will give us a sampling of different methods we can use to attack the problem.
Add a Comment
Comments are closed.