Basic manipulations of data types
Strings
Check if string is empty
needle.empty()
Find position index of matching string
std::size_t pos = haystack.find(needle); # 'find needle in a haystack' > pos=5
needle.empty()
std::size_t pos = haystack.find(needle); # 'find needle in a haystack' > pos=5