scinote-web/app/utilities/repository_import_parser/util.rb
2020-06-01 17:19:33 +02:00

15 lines
371 B
Ruby

# frozen_string_literal: true
module RepositoryImportParser
module Util
def self.split_by_delimiter(text:, delimiter:)
# If pattern is a single space, str is split on whitespace, with leading whitespace, new lines, etc...
if delimiter == ' '
text.split(/ /).reject(&:empty?)
else
text.split(delimiter)
end
end
end
end