Created
February 6, 2015 12:55
-
-
Save matsuyoro/a207fd2d6e8c3140a15f to your computer and use it in GitHub Desktop.
swift 指定の文字列の位置を最後から検索 ref: http://qiita.com/matsuyoro/items/b7146ae0d79abf845989
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pos 9223372036854775807 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var hogeNsStr:NSString = "yoshiganbaruzou yoshiyoshi" | |
var pos = hogeNsStr.rangeOfString("yoshi", options:NSStringCompareOptions.BackwardsSearch).location | |
println("pos \(pos)") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment