1件ヒット
[1-1件を表示]
(0.204秒)
ライブラリ
- ビルトイン (1)
検索結果
-
String
# start _ with?(*strs) -> bool (54307.0) -
self の先頭が strs のいずれかであるとき true を返します。
...れかであるとき true を返します。
@param strs パターンを表す文字列 (のリスト)
//emlist[例][ruby]{
"string".start_with?("str") # => true
"string".start_with?("ing") # => false
"string".start_with?("ing", "str") # => true
//}
@see String#end_with?...