As per title, what practise for string comparisons do you use and why?
|
|
|
|
|
|
|
You haven't specified a platform, but I'm guessing .NET. I would strongly suggest you use the latter form - because case comparisons aren't as simple as you might expect. (It also avoids creating extra strings, but that's a different matter.) For example, what do you want your code to do when presented with "mail" and "MAIL" when it's running in Turkey? If you use See the recommendations for using strings in MSDN for more information and guidance. Aside from anything else, I'd say that the latter expresses your intent more effectively. You're not actually interested in the lower case values of the strings - you're interested in equality in a case-insensitive way... which is exactly what the second form expresses. |
|||
|
|
|
|
The You get the best performance for case insensetive comparison with the If you want to change the case for comparison, it's recommended that you use In most cases the performance is not crucial, so you should use the alternative that makes most sense in the situation. You haven't specified which language you are using, but from the |
|||
|
|
|
|
I feel more better in using second one than first one. Because, the second type will be supported in all languages and it will be more convenient to use. |
||
|
|
|
|
The first seems more natural to me - using the == operator makes more sense than calling a function with a |
||
|
|
