32件ヒット
[1-32件を表示]
(0.144秒)
別のキーワード
ライブラリ
- ビルトイン (32)
キーワード
-
delete
_ prefix! (8) -
end
_ with? (12) -
start
_ with? (12)
検索結果
先頭4件
-
String
# start _ with?(*prefixes) -> bool (6167.0) -
self の先頭が prefixes のいずれかであるとき true を返します。
...
self の先頭が prefixes のいずれかであるとき true を返します。
@param prefixes パターンを表す文字列または正規表現 (のリスト)
//emlist[例][ruby]{
"string".start_with?("str") # => true
"string".start_with?("ing") # => false
"string".start_w......ith?("ing", "str") # => true
"string".start_with?(/\w/) # => true
"string".start_with?(/\d/) # => false
//}
@see String#end_with?
@see String#delete_prefix, String#delete_prefix!... -
String
# start _ with?(*strs) -> bool (6149.0) -
self の先頭が strs のいずれかであるとき true を返します。
...
self の先頭が strs のいずれかであるとき 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?... -
String
# delete _ prefix!(prefix) -> self | nil (161.0) -
self の先頭から破壊的に prefix を削除します。
...self の先頭から破壊的に prefix を削除します。
@param prefix 先頭から削除する文字列を指定します。
@return 削除した場合は self、変化しなかった場合は nil
//emlist[][ruby]{
"hello".delete_prefix!("hel") # => "lo"
"hello".delete_prefix!("llo") # => n......il
//}
@see String#delete_prefix
@see String#delete_suffix!
@see String#start_with?... -
String
# end _ with?(*strs) -> bool (42.0) -
self の末尾が strs のいずれかであるとき true を返します。
...
self の末尾が strs のいずれかであるとき true を返します。
@param strs パターンを表す文字列 (のリスト)
//emlist[例][ruby]{
"string".end_with?("ing") # => true
"string".end_with?("str") # => false
"string".end_with?("str", "ing") # => true
/....../}
@see String#start_with?....../}
@see String#start_with?
@see String#delete_suffix, String#delete_suffix!...