Let's say I have:
string1 = "abcdefgh"
string2 = "abb"
I want to compare all the characters in string2 and check they are represented in string1
Examples:
// Example 1
string1 = "abcdefgh"
string2 = "abb"
// -->TRUE (even though "b" is used twice it checks it twice to make sure")
// Example 2
string1 = "abcdefgh"
string2 = "abz"
// FALSE ("z" is not represented in string1)
// Example 3
string1 = "abcdefgh"
string2 = "ddd"
// TRUE
// Example 4
string1 = "abcdefgh"
string2 = "xyz"
// FALSE
Thank kindly