るりまサーチ

最速Rubyリファレンスマニュアル検索!
12件ヒット [1-12件を表示] (0.105秒)

別のキーワード

  1. array sample
  2. _builtin sample
  3. sample array
  4. sample random
  5. sample _builtin

ライブラリ

クラス

検索結果

Pathname#split -> Array (18243.0)

File.split(self.to_s) と同じです。

...File.split(self.to_s) と同じです。

//emlist[例][ruby]{
require "pathname"

pathname = Pathname("/path/to/sample")
pathname.split # => [#<Pathname:/path/to>, #<Pathname:sample>]
//}

@see File.split...