Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,907 questions

51,839 answers

573 users

How to search substring case insensitive in a string using search() and bind() in C++

1 Answer

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

using std::cout;
using std::endl;
using std::string;

using namespace std::placeholders;

char to_upper(char ch)
{
	std::locale local;

	return std::use_facet<std::ctype<char> >(local).toupper(ch);
}

int main()
{
	string s("C++C#JavaPythonPHP");
	string sub_s("python");

	string::iterator pos;

	pos = search(s.begin(), s.end(),           
		         sub_s.begin(), sub_s.end(),   
		         bind(std::equal_to<char>(),   
			     bind(to_upper, _1),
			     bind(to_upper, _2)));

	if (pos != s.end()) {
		cout << "found: " << sub_s << " in: " << s << endl;
	}
}

/*
run:

found: python in: C++C#JavaPythonPHP

*/

 



answered Jan 26, 2018 by avibootz

Related questions

2 answers 136 views
1 answer 67 views
1 answer 81 views
...