Say you have two strings and you want to see if str2 contains all the needed characters to make up str1. str1 = 'elephant' str2 = 'eluhrtphnat' Function should return false, since the str2 is missing the second e.
I understand you can use the Includes() function, however this will not work for words, like elephant, where there are 2 e's.