Skip to content

Instantly share code, notes, and snippets.

@havenwood
Created November 13, 2024 21:55
Show Gist options
  • Save havenwood/57f4b1c3b78b280382b7c14d606f5181 to your computer and use it in GitHub Desktop.
Save havenwood/57f4b1c3b78b280382b7c14d606f5181 to your computer and use it in GitHub Desktop.
Example for @isene on #ruby IRC
without = %w[b c]
without_regexp = Regexp.union(without)
split_index = 7
dropped = split_index.pred
str = 'abcdaba123abcd'
pos = str
.each_grapheme_cluster
.with_index
.lazy
.grep_v(without_regexp)
.drop(dropped)
.first
&.last
index = pos + dropped
[str[...index], str[index..]]
#=> ["abcdaba123ab", "cd"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment