Skip to content

Instantly share code, notes, and snippets.

@nirvdrum
Created February 16, 2024 16:42
Show Gist options
  • Save nirvdrum/d147697f2f2db86b723f9fd5b2de2536 to your computer and use it in GitHub Desktop.
Save nirvdrum/d147697f2f2db86b723f9fd5b2de2536 to your computer and use it in GitHub Desktop.
if regexp.forced_utf8_encoding?
Encoding::UTF_8
elsif regexp.forced_binary_encoding?
Encoding::ASCII_8BIT
elsif regexp.forced_us_ascii_encoding?
Encoding::US_ASCII
elsif regexp.ascii_8bit?
Encoding::ASCII_8BIT
elsif regexp.utf_8?
Encoding::UTF_8
elsif regexp.euc_jp?
Encoding::EUC_JP
elsif regexp.windows_31j?
Encoding::Windows_31J
else
encoding
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment