#include"script.h" int main() { Str a( "word1;word2, 33abc;,, \nword4. vxcpp " ), b( "word1, word2, 33abc " ), c("word2, word5" ); bool r = isset( a, b, " ;,\n" ); // true r = isset( a, c, " ;,\n" ); // false Str d( "word2 , , word1 33abc ,,,," ), e( "word1, 33abc, word3" ); r = isequalset( b, d, " ," ); // true r = isequalset( b, e, " ," ); // false }