जांचें कि क्या स्ट्रिंग में C ++ में स्ट्रिंग है


493

मेरे पास एक प्रकार का चर है std::string। मैं जाँच करना चाहता हूँ कि क्या यह एक निश्चित है std::string। मुझे यह कैसे करना है?

क्या कोई ऐसा फ़ंक्शन है जो स्ट्रिंग के पाए जाने पर सही है, और अगर ऐसा नहीं है तो गलत है?


6
क्या आपका मतलब है चार * एसटीएल से स्ट्रिंग या स्ट्रिंग?
anthares

1
यह एक चार * स्ट्रिंग नहीं है। मुझे इसका उपयोग करने के लिए # स्ट्रिंग <string> करनी पड़ी।
न्यूरोमैंसर

1
कुछ समाधान मैं जिस स्ट्रिंग को खोजना चाहता हूं, उसके लिए s2 का उपयोग कर रहा हूं। यह अभी भी काम करेगा अगर मैं s2 के बजाय "यह एक स्ट्रिंग है" जैसे कुछ का उपयोग करता है?
न्यूरोमैंसर

2
हाँ क्योंकि std :: string प्रकार के लिए एक स्ट्रिंग शाब्दिक कंस्ट्रक्टर है।

18
कृपया कोई std::basic_string::containsव्यक्ति stdlib में जोड़ने का प्रस्ताव बना सकता है।
इमलाई

जवाबों:


722

std::string::findनिम्नानुसार उपयोग करें :

if (s1.find(s2) != std::string::npos) {
    std::cout << "found!" << '\n';
}

नोट: "पाया!" मुद्रित किया जाएगा यदि दोनों का प्रकार हो और s2इसका एक विकल्प हो ।s1s1s2std::string


117

आप findफ़ंक्शन का उपयोग करके देख सकते हैं :

string str ("There are two needles in this haystack.");
string str2 ("needle");

if (str.find(str2) != string::npos) {
//.. found.
} 

27

वास्तव में, आप बूस्ट लाइब्रेरी का उपयोग करने की कोशिश कर सकते हैं, मुझे लगता है कि std :: string सभी सामान्य स्ट्रिंग ऑपरेशन करने के लिए पर्याप्त विधि की आपूर्ति नहीं करती है। बढ़ावा देने के लिए, आप बस इसका उपयोग कर सकते हैं boost::algorithm::contains:

#include <string>
#include <boost/algorithm/string.hpp>

int main() {
    std::string s("gengjiawen");
    std::string t("geng");
    bool b = boost::algorithm::contains(s, t);
    std::cout << b << std::endl;
    return 0;
}

32
"मुझे लगता है कि std :: string सभी सामान्य स्ट्रिंग ऑपरेशन करने के लिए पर्याप्त विधि की आपूर्ति नहीं करता है"। लेकिन findवास्तव में कार्य के लिए एक विधि है। पुस्तकालय की निर्भरता शुरू करने की आवश्यकता नहीं है।
स्टीफन

8
@stefan, आप सही हैं, एक खोज विधि है, लेकिन विभाजन, प्रतिस्थापन और कई अन्य कर्मचारियों के बारे में क्या है। आप जावा में स्ट्रिंग एपी से स्ट्रिंग :: स्ट्रिंग की तुलना कर सकते हैं। कोई भी मुझे नहीं लगता कि इसमें बहुत अधिक सुरुचिपूर्ण है यह जाँचने के लिए कि क्या एक स्ट्रिंग में एक और स्ट्रिंग है।
गेंग जियावेन

1
इसके अलावा यह छोटा है, और स्मृति के लिए अधिक आसान है। Cpp 17 में फाइलसिस्टम के लिए समर्थन है। मुझे आशा है कि Cpp 2x स्ट्रिंग के लिए भी कुछ करेगा। यह बहुत दर्दनाक अभाव है आधुनिक सीपी में बुनियादी स्ट्रिंग विधि का समर्थन है।
गेंग जियावेन

1
क्या आपको वास्तव में "usings" की आवश्यकता है? जब मैंने इस कोड को पढ़ा, तो मुझे नहीं पता कि क्या containsहै std::containsया boost::containsजो एक महत्वपूर्ण कमी की तरह लगता है। मुझे लगता है कि std :: में वर्तमान में मौजूद नहीं है, लेकिन मुझे यकीन नहीं है कि यह मान लेना उचित है कि पाठक ने सब कुछ std में याद कर लिया है। और std::containsc ++ के कुछ भविष्य के संस्करण में बहुत अच्छी तरह से मौजूद हो सकता है, जो इस कार्यक्रम को तोड़ देगा।
डॉन हैच

12

आप यह कोशिश कर सकते हैं

string s1 = "Hello";
string s2 = "el";
if(strstr(s1.c_str(),s2.c_str()))
{
   cout << " S1 Contains S2";
}

4

इस घटना में कि यदि कार्यक्षमता आपके सिस्टम के लिए महत्वपूर्ण है, तो वास्तव में पुरानी strstrपद्धति का उपयोग करना फायदेमंद है । std::searchभीतर की विधि algorithmसबसे धीमी संभव है। मेरा अनुमान है कि उन पुनरावृत्तियों को बनाने में बहुत समय लगेगा।

कोड है कि मैं समय के लिए इस्तेमाल किया पूरी बात है

#include <string>
#include <cstring>
#include <iostream>
#include <algorithm>
#include <random>
#include <chrono>

std::string randomString( size_t len );

int main(int argc, char* argv[])
{
        using namespace std::chrono;

        const size_t haystacksCount = 200000;
        std::string haystacks[haystacksCount];
        std::string needle = "hello";

        bool sink = true;

        high_resolution_clock::time_point start, end;
        duration<double> timespan;

        int sizes[10] = { 10, 20, 40, 80, 160, 320, 640, 1280, 5120, 10240 };

        for(int s=0; s<10; ++s)
        {
                std::cout << std::endl << "Generating " << haystacksCount << " random haystacks of size " << sizes[s] << std::endl;
                for(size_t i=0; i<haystacksCount; ++i)
                {
                        haystacks[i] = randomString(sizes[s]);
                }

                std::cout << "Starting std::string.find approach" << std::endl;
                start = high_resolution_clock::now();
                for(size_t i=0; i<haystacksCount; ++i)
                {
                        if(haystacks[i].find(needle) != std::string::npos)
                        {
                                sink = !sink; // useless action
                        }
                }
                end = high_resolution_clock::now();
                timespan = duration_cast<duration<double>>(end-start);
                std::cout << "Processing of " << haystacksCount << " elements took " << timespan.count() << " seconds." << std::endl;

                std::cout << "Starting strstr approach" << std::endl;
                start = high_resolution_clock::now();
                for(size_t i=0; i<haystacksCount; ++i)
                {
                        if(strstr(haystacks[i].c_str(), needle.c_str()))
                        {
                                sink = !sink; // useless action
                        }
                }
                end = high_resolution_clock::now();
                timespan = duration_cast<duration<double>>(end-start);
                std::cout << "Processing of " << haystacksCount << " elements took " << timespan.count() << " seconds." << std::endl;

                std::cout << "Starting std::search approach" << std::endl;
                start = high_resolution_clock::now();
                for(size_t i=0; i<haystacksCount; ++i)
                {
                        if(std::search(haystacks[i].begin(), haystacks[i].end(), needle.begin(), needle.end()) != haystacks[i].end())
                        {
                                sink = !sink; // useless action
                        }
                }
                end = high_resolution_clock::now();
                timespan = duration_cast<duration<double>>(end-start);
                std::cout << "Processing of " << haystacksCount << " elements took " << timespan.count() << " seconds." << std::endl;
        }

        return 0;
}

std::string randomString( size_t len)
{
        static const char charset[] = "abcdefghijklmnopqrstuvwxyz";
        static const int charsetLen = sizeof(charset) - 1;
        static std::default_random_engine rng(std::random_device{}());
        static std::uniform_int_distribution<> dist(0, charsetLen);
        auto randChar = [charset, &dist, &rng]() -> char
        {
                return charset[ dist(rng) ];
        };

        std::string result(len, 0);
        std::generate_n(result.begin(), len, randChar);
        return result;
}

यहाँ मैं यादृच्छिक उत्पन्न करता हूँ haystacksऔर उनमें खोज करता हूँ needle। हिस्टैक की गिनती निर्धारित है, लेकिन प्रत्येक हाइस्टैक के भीतर तार की लंबाई शुरुआत में 10 से बढ़कर अंत में 10240 हो जाती है। अधिकांश समय कार्यक्रम वास्तव में यादृच्छिक तार उत्पन्न करता है, लेकिन यह उम्मीद की जानी है।

आउटपुट है:

Generating 200000 random haystacks of size 10
Starting std::string.find approach
Processing of 200000 elements took 0.00358503 seconds.
Starting strstr approach
Processing of 200000 elements took 0.0022727 seconds.
Starting std::search approach
Processing of 200000 elements took 0.0346258 seconds.

Generating 200000 random haystacks of size 20
Starting std::string.find approach
Processing of 200000 elements took 0.00480959 seconds.
Starting strstr approach
Processing of 200000 elements took 0.00236199 seconds.
Starting std::search approach
Processing of 200000 elements took 0.0586416 seconds.

Generating 200000 random haystacks of size 40
Starting std::string.find approach
Processing of 200000 elements took 0.0082571 seconds.
Starting strstr approach
Processing of 200000 elements took 0.00341435 seconds.
Starting std::search approach
Processing of 200000 elements took 0.0952996 seconds.

Generating 200000 random haystacks of size 80
Starting std::string.find approach
Processing of 200000 elements took 0.0148288 seconds.
Starting strstr approach
Processing of 200000 elements took 0.00399263 seconds.
Starting std::search approach
Processing of 200000 elements took 0.175945 seconds.

Generating 200000 random haystacks of size 160
Starting std::string.find approach
Processing of 200000 elements took 0.0293496 seconds.
Starting strstr approach
Processing of 200000 elements took 0.00504251 seconds.
Starting std::search approach
Processing of 200000 elements took 0.343452 seconds.

Generating 200000 random haystacks of size 320
Starting std::string.find approach
Processing of 200000 elements took 0.0522893 seconds.
Starting strstr approach
Processing of 200000 elements took 0.00850485 seconds.
Starting std::search approach
Processing of 200000 elements took 0.64133 seconds.

Generating 200000 random haystacks of size 640
Starting std::string.find approach
Processing of 200000 elements took 0.102082 seconds.
Starting strstr approach
Processing of 200000 elements took 0.00925799 seconds.
Starting std::search approach
Processing of 200000 elements took 1.26321 seconds.

Generating 200000 random haystacks of size 1280
Starting std::string.find approach
Processing of 200000 elements took 0.208057 seconds.
Starting strstr approach
Processing of 200000 elements took 0.0105039 seconds.
Starting std::search approach
Processing of 200000 elements took 2.57404 seconds.

Generating 200000 random haystacks of size 5120
Starting std::string.find approach
Processing of 200000 elements took 0.798496 seconds.
Starting strstr approach
Processing of 200000 elements took 0.0137969 seconds.
Starting std::search approach
Processing of 200000 elements took 10.3573 seconds.

Generating 200000 random haystacks of size 10240
Starting std::string.find approach
Processing of 200000 elements took 1.58171 seconds.
Starting strstr approach
Processing of 200000 elements took 0.0143111 seconds.
Starting std::search approach
Processing of 200000 elements took 20.4163 seconds.

उत्तर का छोटा संस्करण है: c ++ के बजाय c का उपयोग :) :)
r0ng

3

यदि आप मानक पुस्तकालय कार्यों का उपयोग नहीं करना चाहते हैं, तो नीचे एक समाधान है।

#include <iostream>
#include <string>

bool CheckSubstring(std::string firstString, std::string secondString){
    if(secondString.size() > firstString.size())
        return false;

    for (int i = 0; i < firstString.size(); i++){
        int j = 0;
        // If the first characters match
        if(firstString[i] == secondString[j]){
            int k = i;
            while (firstString[i] == secondString[j] && j < secondString.size()){
                j++;
                i++;
            }
            if (j == secondString.size())
                return true;
            else // Re-initialize i to its original value
                i = k;
        }
    }
    return false;
}

int main(){
    std::string firstString, secondString;

    std::cout << "Enter first string:";
    std::getline(std::cin, firstString);

    std::cout << "Enter second string:";
    std::getline(std::cin, secondString);

    if(CheckSubstring(firstString, secondString))
        std::cout << "Second string is a substring of the frist string.\n";
    else
        std::cout << "Second string is not a substring of the first string.\n";

    return 0;
}

6
आप पहले से ही std :: string का उपयोग कर रहे हैं, इसलिए आपका कोड पहले से ही std lib पर निर्भर करता है। मैं rly को std :: string :: find के प्रयोग से स्वीकृत समाधान से बचने का कोई कारण नहीं दिखता।
b00n12

हाँ, यह एक अच्छी बात है। यह नहीं सोचा था कि जब मैंने यह लिखा था। मुझे लगता है कि मैंने जो सोचा था, जब मैंने लिखा था कि शायद यह कैसे std :: find का उपयोग करने से बचा जाए।
Test123

3
भविष्य के आगंतुकों के लिए: यह एल्गोरिथ्म वास्तव में सही नहीं है। क्योंकि "i" कभी भी एक असफल सबस्ट्रिंग मैच के बाद वापस नहीं जाता है, कुछ मामलों का मिलान नहीं किया जाता है, उदाहरण के लिए विचार करें: aabc, aab
sAm_vdP

1
इसके कई बग हैं। CheckSubstring(std::string firstString, std::string secondString)गहरी तारें फ़ंक्शन में पास की गई दोनों स्ट्रिंग्स, जो महंगी हैं, विशेष रूप से लंबे स्ट्रिंग्स के लिए जो ढेर आवंटन की आवश्यकता होती हैं। इसके अलावा, आप कॉल का कहना है कि CheckSubstring("XYZab", "ab\0\0")- whileपाश की तुलना खत्म हो जाएगा aकरने के लिए a, bकरने के लिए b, दूसरी बार में स्पष्ट NUL करने के लिए पहली स्ट्रिंग के अंत में निहित NUL, तो यह पहली स्ट्रिंग के बफर परे पढ़ा जाएगा, अपरिभाषित व्यवहार कर रहे हैं। उपयोग करने के लिए for (... i <= firstString.size () - secondString ()। Size (); ...) `।
टोनी डेलरो

1

अगर तार का आकार अपेक्षाकृत बड़ा (सैकड़ों बाइट्स या अधिक) और c ++ 17 उपलब्ध है, तो आप बॉयर-मूर-हॉर्सपूल खोजक (cppreference.com से उदाहरण) का उपयोग करना चाह सकते हैं:

#include <iostream>
#include <string>
#include <algorithm>
#include <functional>

int main()
{
    std::string in = "Lorem ipsum dolor sit amet, consectetur adipiscing elit,"
                     " sed do eiusmod tempor incididunt ut labore et dolore magna aliqua";
    std::string needle = "pisci";
    auto it = std::search(in.begin(), in.end(),
                   std::boyer_moore_searcher(
                       needle.begin(), needle.end()));
    if(it != in.end())
        std::cout << "The string " << needle << " found at offset "
                  << it - in.begin() << '\n';
    else
        std::cout << "The string " << needle << " not found\n";
}

3
काल के लक्षण। पुराने दिनों में किसी ने एक समारोह की पेशकश की होगी bool contains(const std::string& haystack, const std::string& needle)। आजकल, वे अस्पष्ट कागज के कुछ अस्पष्ट लेखकों के नाम पर पहेली टुकड़ों का एक सेट पेश करते हैं ताकि इसे कंप्यूटर विज्ञान की तरह देखा जा सके ...
BitTickler

0

आप सिस्टम नेमस्पेस का भी उपयोग कर सकते हैं। फिर आप इसमें शामिल विधि का उपयोग कर सकते हैं।

#include <iostream>
using namespace System;

int main(){
    String ^ wholeString = "My name is Malindu";

    if(wholeString->ToLower()->Contains("malindu")){
        std::cout<<"Found";
    }
    else{
        std::cout<<"Not Found";
    }
}

यह उत्तर केवल Microsoft के स्वामित्व वाले C ++ एक्सटेंशन पर लागू होता है या तो C ++ / CX या C ++ / CLI
H. Al-Amri

1
हाँ, मुझे खेद है, मुझे नहीं पता था कि यह केवल उस तरह से काम करता है जब तक कि मैं इसे पोस्ट नहीं करता।
मलिंडू दिलंका

-1

यह एक सरल कार्य है

bool find(string line, string sWord)
{
    bool flag = false;
    int index = 0, i, helper = 0;
    for (i = 0; i < line.size(); i++)
    {
        if (sWord.at(index) == line.at(i))
        {
            if (flag == false)
            {
                flag = true;
                helper = i;
            }
            index++;
        }
        else
        {
            flag = false;
            index = 0;
        }
        if (index == sWord.size())
        {
            break;
        }
    }
    if ((i+1-helper) == index)
    {
        return true;
    }
    return false;
}

4
नमस्ते, एसओ में आपका स्वागत है। क्या आप अपना उत्तर संपादित कर सकते हैं और इस पर टिप्पणी जोड़ सकते हैं कि यह कैसे काम करता है और यह अन्य उत्तरों से कैसे भिन्न है? धन्यवाद!
फैबियो का कहना है कि

-1
#include <algorithm>        // std::search
#include <string>
using std::search; using std::count; using std::string;

int main() {
    string mystring = "The needle in the haystack";
    string str = "needle";
    string::const_iterator it;
    it = search(mystring.begin(), mystring.end(), 
                str.begin(), str.end()) != mystring.end();

    // if string is found... returns iterator to str's first element in mystring
    // if string is not found... returns iterator to mystring.end()

if (it != mystring.end())
    // string is found
else
    // not found

return 0;
}

11
कृपया उत्तर के रूप में केवल डंपिंग कोड से बचने की कोशिश करें और यह समझाने की कोशिश करें कि यह क्या और क्यों करता है। आपका कोड उन लोगों के लिए स्पष्ट नहीं हो सकता है जिनके पास प्रासंगिक कोडिंग अनुभव नहीं है। स्पष्टीकरण, संदर्भ
S

कोड को स्पष्ट करने के लिए धन्यवाद, usingकेवल आवश्यक कार्यों के साथ उपयोग करने के लिए और वैश्विक स्थान में पूरे नाम स्थान को डंप करने के लिए नहीं। @ S didn'tOnᴇᴌᴀ टिप्पणी के लिए, मुझे लगता है कि उपयोगकर्ता ने आपके कोड में टिप्पणियों को नहीं पढ़ा है।
v010dya

-2

इस वेबसाइट में इतने सारे जवाबों से मुझे एक स्पष्ट उत्तर नहीं मिला, इसलिए 5-10 मिनट में मैंने खुद ही इसका उत्तर निकाल लिया। लेकिन यह दो मामलों में किया जा सकता है:

  1. या तो आप उप-स्ट्रिंग की स्थिति जानते हैं जिसे आप स्ट्रिंग में खोजते हैं
  2. या तो आप स्थिति को नहीं जानते हैं और इसके लिए खोज करते हैं, char by char ...

तो चलिए हम स्ट्रिंग "abcde" में स्ट्रिंग "सीडी" के लिए खोज मान, और हम सबसे सरल का उपयोग करते हैं substr सी में निर्मित समारोह ++

1 के लिए:

#include <iostream>
#include <string>

    using namespace std;
int i;

int main()
{
    string a = "abcde";
    string b = a.substr(2,2);    // 2 will be c. Why? because we start counting from 0 in a string, not from 1.

    cout << "substring of a is: " << b << endl;
    return 0;
}

2 के लिए:

#include <iostream>
#include <string>

using namespace std;
int i;

int main()
{
    string a = "abcde";

    for (i=0;i<a.length(); i++)
    {
        if (a.substr(i,2) == "cd")
        {
        cout << "substring of a is: " << a.substr(i,2) << endl;    // i will iterate from 0 to 5 and will display the substring only when the condition is fullfilled 
        }
    }
    return 0;
}

2
किस तरह से शीर्ष उत्तर ("उपयोग std :: string :: find"), 8 साल पहले पोस्ट किया गया था, पर्याप्त स्पष्ट नहीं है?
स्टीव स्मिथ

-3

हम इसके बजाय इस विधि का उपयोग कर सकते हैं। मेरी परियोजनाओं से सिर्फ एक उदाहरण। कोड का संदर्भ लें। कुछ एक्स्ट्रा भी शामिल हैं।

अगर बयानों को देखो!

/*
Every C++ program should have an entry point. Usually, this is the main function.
Every C++ Statement ends with a ';' (semi-colon)
But, pre-processor statements do not have ';'s at end.
Also, every console program can be ended using "cin.get();" statement, so that the console won't exit instantly.
*/

#include <string>
#include <bits/stdc++.h> //Can Use instead of iostream. Also should be included to use the transform function.

using namespace std;
int main(){ //The main function. This runs first in every program.

    string input;

    while(input!="exit"){
        cin>>input;
        transform(input.begin(),input.end(),input.begin(),::tolower); //Converts to lowercase.

        if(input.find("name") != std::string::npos){ //Gets a boolean value regarding the availability of the said text.
            cout<<"My Name is AI \n";
        }

        if(input.find("age") != std::string::npos){
            cout<<"My Age is 2 minutes \n";
        }
    }

}

मुझे क्षमा करें, मैंने नहीं देखा कि किसी ने वही काम किया है जो मैंने पहले किया था।
मलिंडू दिलंका

1
"YouTube पर मेरे लिए सदस्यता लें" स्पैम माना जा सकता है। कृपया भविष्य में इसका ध्यान रखें। यह भी पढ़ें कि कैसे जवाब देना है और कैसे एक स्पैमर नहीं है
झो
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.