Skip to content

Instantly share code, notes, and snippets.

@kmdsbng
Last active December 14, 2015 15:18
Show Gist options
  • Select an option

  • Save kmdsbng/5106358 to your computer and use it in GitHub Desktop.

Select an option

Save kmdsbng/5106358 to your computer and use it in GitHub Desktop.
# ':/?*[]\ は削除する
# 31文字以内に切り詰める
# http://support.microsoft.com/kb/436482/ja
def normalize_excel_sheet_name(str)
str.gsub(/[':\/?*\[\]]/, '').slice(0, 31)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment