Created
November 13, 2024 21:55
-
-
Save havenwood/57f4b1c3b78b280382b7c14d606f5181 to your computer and use it in GitHub Desktop.
Example for @isene on #ruby IRC
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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