I want to compare 2 strings. Is there a method to compare strings that is not case sensitive? Java has one but I don't know about c++. I'm using .compare( "xxxx" ) and its case sensitive. I also just tried to convert all my strings to lowecase using strlwr( a ) where a: String a="some string" but I get an error saying the function doesnt take a string. I'm using MS Visual C++

thanks,
xer