Re: [swift-users] String Comparisons in Swift

2016-06-02 Thread Erica Sadun via swift-users
> On Jun 2, 2016, at 1:07 PM, John Myers via swift-users > wrote: > > I've had some difficulty comparing string variables to string constants with > ==. I believe it's always after using a readLine(). Does Swift require a > .equals() or a .compareTo(), as other c like languages, or are ther

Re: [swift-users] String Comparisons in Swift

2016-06-02 Thread Austin Zheng via swift-users
You should be able to use ==. Are the lengths of your strings the same length? readLine() has a strip newlines parameter that is true by default. Best, Austin Sent from my iPhone > On Jun 2, 2016, at 12:07 PM, John Myers via swift-users > wrote: > > I've had some difficulty comparing stri

[swift-users] String Comparisons in Swift

2016-06-02 Thread John Myers via swift-users
I've had some difficulty comparing string variables to string constants with ==. I believe it's always after using a readLine(). Does Swift require a .equals() or a .compareTo(), as other c like languages, or are there invisible characters in my string because of the readLine() which I need to st