diff --git a/lectures/01_introduction/README.md b/lectures/01_introduction/README.md index c23843b..062273c 100644 --- a/lectures/01_introduction/README.md +++ b/lectures/01_introduction/README.md @@ -287,6 +287,13 @@ object. There are several ways of constructing string objects: This [example program](getline.cpp) is the starting point to most of your homeworks. It shows how you can read information from a file, and write information into another file. +## 1.16 Two Useful String Functions + +- find() +- substr() + +This [example program](strings.cpp) which uses these two string functions, can also be very useful in your homeworks. +