I am trying to compare 2 strings but getting weird results. On some computers, the comparison works correctly and on others, it does not. The codes is written in Visual Studio 2010 using managed C++.I have checked the strings and they look identical. Any thoughts?

String^ str1 = "string1";
char[] chars = "string1";
String^ str2 = new String(chars);
if(String::Compare(str1,str2)==0)
    return true;
else
    return false;
link|improve this question

String::Compare is culture-sensitive; if you want to use an invariant culture then use a different overload taking CultureInfo. – ildjarn Feb 2 at 0:35
I saw that but I'm not very familiar with cultures. How would I do that? – giroy Feb 2 at 0:41
Calling this overload with StringComparison::InvariantCulture is surely the easiest approach, but every overload comes with example code -- read the documentation. – ildjarn Feb 2 at 0:42
InvariantCulture still fails. So do the rest. – giroy Feb 2 at 0:46
Then you'll need to show more code that actually exhibits the problem (e.g. you're not even examining the result of String::Compare in the code you've shown). SSCCE – ildjarn Feb 2 at 0:47
show 7 more comments
feedback

1 Answer

up vote 0 down vote accepted

It turns out the issue was with the char* conversion to a string. The char* array was not properly null terminated.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.