


In the world of programming, there are many scenarios where we really want to look for specific patterns in larger text. A common task is to find and print every string in a given array that occurs as a substring within a given string. This seemingly basic problem can be solved using various methods, and in this article we will explore two of them. We provide a clear explanation of the syntax and algorithms used for each method and provide two complete executable code examples.
grammar
Before we introduce the methods, let us first understand the syntax we will use to solve this problem -
void printMatchingStrings(string array[], string text);
algorithm
To solve the problem of finding and printing all strings that occur as substrings in a given string from an array, we can follow the following step-by-step algorithm -
Initialize an empty vector to store matching strings.
Repeat each string in the array.
Checks whether the current string is a substring of the given text.
The assumption is that, add a string to a vector of matching strings.
After iterating through all strings, print the vector of matching strings.
Method 1: Use string.find() function
In this technique, we will use the string.find() function, which returns the position of a substring in a string. If the substring is not found, it returns a special value called string::npos.
Example
#include <iostream> #include <vector> #include <string> void printMatchingStrings(const std::string array[], const std::string& text, int arraySize) { std::vector<std::string> matchingStrings; for (int i = 0; i < arraySize; i++) { if (text.find(array[i]) != std::string::npos) { matchingStrings.push_back(array[i]); } } for (const std::string& match : matchingStrings) { std::cout << match << std::endl; } } int main() { const std::string array[] = { "apple", "banana", "orange", "pear" }; const std::string text = "I like to eat bananas and oranges."; int arraySize = sizeof(array) / sizeof(array[0]); printMatchingStrings(array, text, arraySize); return 0; }
Output
banana orange
Method 2: Use regular expressions
Regular expressions provide powerful tools for pattern matching in strings. We can also use them to solve our problems.
Example
#include <iostream> #include <vector> #include <string> #include <regex> void printMatchingStrings(const std::string array[], const std::string& text, int arraySize) { std::vector<std::string> matchingStrings; for (int i = 0; i < arraySize; i++) { std::regex pattern(array[i]); if (std::regex_search(text, pattern)) { matchingStrings.push_back(array[i]); } } for (const std::string& match : matchingStrings) { std::cout << match << std::endl; } } int main() { const std::string array[] = { "apple", "banana", "orange", "pear" }; const std::string text = "I like to eat bananas and pear."; int arraySize = sizeof(array) / sizeof(array[0]); printMatchingStrings(array, text, arraySize); return 0; }
Output
banana pear
Choose the right method
Choosing between the two methods depends on the requirements of your specific problem −
Use the string.find() method if
The pattern that needs to be matched is relatively simple.
Performance is an issue because the string.find() method may be faster than regular expressions for simple patterns.
You prefer a simpler implementation that does not require regular expression syntax.
Use regular expression method if
The pattern to be matched is complex and requires advanced pattern matching capabilities.
Flexibility and powerful pattern matching are important.
Performance is not a critical factor, or the complexity of the pattern justifies the use of regular expressions.
in conclusion
In this article, we explore two unique ways to deal with the problem of finding and printing out the occurrence of a substring in a given string. The main method uses the string.find() function, which is a simple and straightforward solution. Subsequent methods exploited the power of regular expressions to handle more complex pattern matching situations. Depending on the needs of your specific problem, you can choose the most appropriate method. Remember that pattern matching is a fundamental task in programming, and having a strong understanding of various methods and strategies can significantly improve your problem-solving abilities. So the next time you encounter a similar problem, you'll have enough knowledge to handle it effectively.
The above is the detailed content of Print out all strings in a given array that occur as substrings in a given string using C++. For more information, please follow other related articles on the PHP Chinese website!

程序描述在几何学中,正方形是一种正规四边形,意味着它有四条相等的边和四个相等的角。实心和空心正方形将如下所示算法对于实心正方形-AccepttheNumberofRowsfromtheusertodrawtheSolidSquareForeachRow,Print*foreachColumntodrawtheSolidSquare对于空心正方形−AccepttheNumberofRowsfromtheusertodrawtheHollowSquareFortheFirstan

PHP 打印功能实现的步骤和技巧 在 Web 开发的过程中,打印功能是相当重要的一种需求。相信大家都遇到过需要从网页中打印出某些内容的情况,比如收据、报告、合同等。本文将介绍如何使用 PHP 实现 Web 页面的打印功能。

ppt打印出来显示不全解决方法:1、检查页面设置,确保页面大小与打印纸张大小相匹配;2、调整缩放比例,尝试不同的缩放比例,直到能在打印预览中看到完整的幻灯片内容;3、调整文字框大小,选中文字框,然后拖动边框以调整大小,以确保文字能够完整显示在打印页面上;4、优化图片分辨率,使用图像编辑软件将图片的分辨率调整为适合打印的大小;5、打印预览,用打印预览来检查PPT内容是否完整显示。

程序说明打印如下所示的实心和空心菱形图案算法对于空心菱形-AccepttheNumberofRowsforHollowRhombusfromtheUserCreateaHollowRhombuscontainingthesamenumberofRowsspecifiedbytheUser.Printthefirstrowcontainingthenumberofstarssameasthenumberofrows.Printthesecondrowcontainingthefirstandlas

传真和打印是有区别的,其区别有:1、传真是将文件通过传真机从一方传到较远地方的另一方,而打印是只在电脑上将文件或者材料打印出来;2、打印机种类繁多,主要功能就是打印,而传真机主要的核心功能是发送和接收;3、打印机只能从计算机上发送他们想要的文件,而两台打印机不能相互传输数据,而传真机是在电话的基础上增加数据传输功能,两台传真机可以相互发送文件,无需计算机也可以接收文件。

通过打印星形设计可以更轻松地理解循环想法。星号用于各种星形图案形成完整或空心三角形或菱形形式。在这个在这篇文章中,我们将展示如何在C++中创建一个居中对齐的递减三角形。下表将包含我们创建的打印星星的逻辑。下表可以帮助我们理解。语法****************************这里显示了7行。对于每行i,有(n–i+1)颗星星。然而,每个行有一些填充,这里每行的填充都在减少。而明星也有恒定的填充。我们可以通过打印“*”(星号后跟空格)来实现这一点而不是仅打印“*”。该表显示了空格和星星数

PHP表单处理:表单数据导出与打印在网站开发中,表单是不可或缺的一部分。当网站上的表单被用户填写并提交后,开发者需要对这些表单数据进行处理。本文将介绍如何使用PHP处理表单数据,并演示如何将数据导出为Excel文件和打印出来。一、表单提交与基本处理首先,需要创建一个HTML表单,供用户填写并提交数据。假设我们有一个简单的反馈表单,包含姓名、邮箱和评论。HTM

任务是打印给定二叉树的左节点。首先,用户将插入数据,从而生成二叉树,然后打印所形成的树的左视图。每个节点最多可以有2个子节点,因此这里程序必须仅遍历与节点关联的左指针如果左指针不为空,则意味着它将有一些与之关联的数据或指针,否则它将是要打印并显示为输出的左子级。示例Input:10324Output:102这里,橙色节点代表二叉树的左视图。在给定的图中,数据为1的节点是根节点,因此它将被打印,而不是转到左子节点,它将打印0,然后它将转到3并打印其左子节点,即2。我们可以使用递归方法来存储节点的级


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

Dreamweaver CS6
Visual web development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),
