if I have 2 strings like:
a = "hello"
b = "olhel"
I want to use a regular expression (or something else?) to see if the two strings contain the same letters. In my example a would = b because they have the same letters. How can this be achieved?
set(a) == set(b), which is faster thansorted(a) == sorted(b)– Satoru.Logic Sep 30 '10 at 1:08