string contains functions as well

v1
Brett 2023-01-22 18:08:50 -05:00
parent 69ab5d7079
commit dee1c92532
2 changed files with 23 additions and 1 deletions

View File

@ -7,6 +7,7 @@
#ifndef BLT_STRING_H
#define BLT_STRING_H
#include <iostream>
#include <string>
#include <sstream>
#include <algorithm>
@ -38,6 +39,27 @@ namespace blt::String {
}
return true;
}
static inline bool contains(const std::string& string, const std::string& search){
if (search.length() > string.length())
return false;
auto chars = string.c_str();
auto search_chars = search.c_str();
for (int i = 0; i < string.length(); i++){
if (chars[i] == search_chars[0]) {
bool correct = true;
for (int j = 0; j < search.length(); j++) {
if (chars[i + j] != search_chars[j]) {
correct = false;
break;
}
}
if (correct)
return true;
}
}
return false;
}
/**
* Converts the string into lower case
* @param s string to lower case

View File

@ -6,5 +6,5 @@ int main() {
binaryTreeTest();
std::string hello = "superSexyMax";
std::cout << "String starts with: " << blt::String::ends_with(hello, "Max") << "\n";
std::cout << "String starts with: " << blt::String::contains(hello, "superSexyMaxE") << "\n";
}