From fd5690071817598fc685007abf735334919e6505 Mon Sep 17 00:00:00 2001 From: Jidong Xiao Date: Wed, 22 Nov 2023 13:23:41 -0500 Subject: [PATCH] remove emojis --- hws/09_tiktok_trends/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hws/09_tiktok_trends/README.md b/hws/09_tiktok_trends/README.md index cf03943..ae3cef2 100644 --- a/hws/09_tiktok_trends/README.md +++ b/hws/09_tiktok_trends/README.md @@ -285,7 +285,7 @@ Assume you store the post text content in a std::string variable called *text*, ```cpp // the text of the post is given as a std::string, extract hashtags from the text. - // define a regular expression to match hashtags with emojis + // define a regular expression to match hashtags std::regex hashtagRegex("#([\\w\\u0080-\\uFFFF]+)"); // create an iterator for matching