ruby.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
If you are interested in the Ruby programming language, come join us! Tell us about yourself when signing up. If you just want to join Mastodon, another server will be a better place for you.

Administered by:

Server stats:

1.1K
active users

postmodern

TIL Ruby String#split handles trailing / leading occurrences differently.

"foo.bar.".split('.')
# => ["foo", "bar"]

".foo.bar".split('.')
# => ["", "foo", "bar"]

Implicitly chomping the trailing occurrence is actually quite nice. Although, a bit surprised that it doesn't also ignore/omit leading occurrences?

@postmodern This feels like a bug, but I haven't figured out why, yet. It smacks of the stuff we laugh at JS about

@j_s_j @postmodern as documentation mention that: "As seen above, if limit is nil, trailing empty substrings are not returned; the same is true if limit is zero", it seems like a feature. ruby-doc.org/3.3.6/String.html

And now I wonder if
('.' * 1000).split('.', -1).first(3)
will create those 1k empty substrings...

ruby-doc.orgclass String - RDoc Documentation

@postmodern
there is more:
"foo.bar.".split('.', -1)
=> ["foo", "bar", ""]