Class: String

Inherits:
Object show all
Defined in:
lib/lite/ruby/string.rb,
lib/lite/ruby/safe/string.rb

Instance Method Summary collapse

Instance Method Details

#acronymObject



38
39
40
# File 'lib/lite/ruby/string.rb', line 38

def acronym
  gsub(/(([a-zA-Z0-9])([a-zA-Z0-9])*)./, '\\2') || self
end

#acronym!Object



42
43
44
# File 'lib/lite/ruby/string.rb', line 42

def acronym!
  replace(acronym)
end

#any?(*keys) ⇒ Boolean

Returns:

  • (Boolean)


46
47
48
# File 'lib/lite/ruby/string.rb', line 46

def any?(*keys)
  keys.any? { |key| include?(key) }
end

#at(position) ⇒ Object



5
6
7
# File 'lib/lite/ruby/safe/string.rb', line 5

def at(position)
  self[position]
end

#camelize(first_letter = :upper) ⇒ Object Also known as: camelcase



9
10
11
12
13
14
15
# File 'lib/lite/ruby/safe/string.rb', line 9

def camelize(first_letter = :upper)
  case first_letter
  when :upper, true then modulize.gsub(/(\A|\s)([a-z])/) { $1 + $2.upcase }
  when :lower, false then modulize.gsub(/(\A|\s)([A-Z])/) { $1 + $2.downcase }
  else modulize
  end
end

#camelize!(first_letter = :upper) ⇒ Object Also known as: camelcase!



50
51
52
# File 'lib/lite/ruby/string.rb', line 50

def camelize!(first_letter = :upper)
  replace(camelize(first_letter))
end

#capitalized?Boolean

Returns:

  • (Boolean)


54
55
56
# File 'lib/lite/ruby/string.rb', line 54

def capitalized?
  capitalize == self
end

#classifyObject



17
18
19
20
21
# File 'lib/lite/ruby/safe/string.rb', line 17

def classify
  str = dup
  str = str.sub!(/.*\./, '')
  str.camelize!
end

#classify!Object



58
59
60
# File 'lib/lite/ruby/string.rb', line 58

def classify!
  replace(classify)
end

#constantizeObject



23
24
25
# File 'lib/lite/ruby/safe/string.rb', line 23

def constantize
  Object.const_get(camelize)
end

#dasherizeObject



27
28
29
# File 'lib/lite/ruby/safe/string.rb', line 27

def dasherize
  underscore.tr('_', '-')
end

#dasherize!Object



62
63
64
# File 'lib/lite/ruby/string.rb', line 62

def dasherize!
  replace(dasherize)
end

#deconstantizeObject



31
32
33
# File 'lib/lite/ruby/safe/string.rb', line 31

def deconstantize
  [0, rindex('::') || 0]
end

#deconstantize!Object



66
67
68
# File 'lib/lite/ruby/string.rb', line 66

def deconstantize!
  replace(deconstantize)
end

#dedupe(pattern) ⇒ Object



70
71
72
# File 'lib/lite/ruby/string.rb', line 70

def dedupe(pattern)
  dup.dedupe!(pattern)
end

#dedupe!(pattern) ⇒ Object



74
75
76
77
# File 'lib/lite/ruby/string.rb', line 74

def dedupe!(pattern)
  pattern.each_char { |char| gsub!(/#{Regexp.escape(char)}{2,}/, char) }
  self
end

#demodulizeObject



35
36
37
# File 'lib/lite/ruby/safe/string.rb', line 35

def demodulize
  gsub(/^.*::/, '')
end

#demodulize!Object



79
80
81
# File 'lib/lite/ruby/string.rb', line 79

def demodulize!
  replace(demodulize)
end

#domainObject



83
84
85
86
87
# File 'lib/lite/ruby/string.rb', line 83

def domain
  return self unless self =~ %r{^(?:\w+://)?([^/?]+)(?:/|\?|$)}

  Regexp.last_match(1)
end

#downcase?Boolean

Returns:

  • (Boolean)


89
90
91
# File 'lib/lite/ruby/string.rb', line 89

def downcase?
  downcase == self
end

#each_word(&block) ⇒ Object



93
94
95
# File 'lib/lite/ruby/string.rb', line 93

def each_word(&block)
  words.each(&block)
end

#ellipsize(ellipsize_at, options = {}) ⇒ Object



97
98
99
100
101
102
103
104
# File 'lib/lite/ruby/string.rb', line 97

def ellipsize(ellipsize_at, options = {})
  return self if length <= ellipsize_at

  separator = options[:separator] || '...'
  offset = options[:offset] || 4

  "#{self[0, offset]}#{separator}#{self[-offset, offset]}"
end

#first(limit = 1) ⇒ Object



39
40
41
42
43
44
45
46
47
# File 'lib/lite/ruby/safe/string.rb', line 39

def first(limit = 1)
  if limit.zero?
    ''
  elsif limit >= length
    self
  else
    to(limit - 1)
  end
end

#format(*args) ⇒ Object



106
107
108
# File 'lib/lite/ruby/string.rb', line 106

def format(*args)
  super(self, *args.flatten)
end

#from(position) ⇒ Object



49
50
51
# File 'lib/lite/ruby/safe/string.rb', line 49

def from(position)
  self[position..-1]
end

#headerizeObject



110
111
112
# File 'lib/lite/ruby/string.rb', line 110

def headerize
  squish.each_word(&:capitalize!).join(' ')
end

#headerize!Object



114
115
116
# File 'lib/lite/ruby/string.rb', line 114

def headerize!
  replace(headerize)
end

#humanize(capitalize: true) ⇒ Object



53
54
55
56
57
58
59
60
61
62
# File 'lib/lite/ruby/safe/string.rb', line 53

def humanize(capitalize: true)
  str = dup
  str = str.underscore!
  str = str.delete_suffix!('_id')
  str = str.tr!('_', ' ')
  str = str.squish!
  str = str.gsub!(/([a-z\d]*)/i, &:downcase)
  str = str.gsub!(/\A\w/) { |s| capitalize ? s.upcase : s }
  str || self
end

#humanize!(capitalize: true) ⇒ Object



118
119
120
# File 'lib/lite/ruby/string.rb', line 118

def humanize!(capitalize: true)
  replace(humanize(capitalize: capitalize))
end

#indent(amount, seperator = ' ') ⇒ Object



64
65
66
# File 'lib/lite/ruby/safe/string.rb', line 64

def indent(amount, seperator = ' ')
  dup.indent!(amount, seperator)
end

#indent!(amount, seperator = ' ') ⇒ Object



68
69
70
71
72
73
74
# File 'lib/lite/ruby/safe/string.rb', line 68

def indent!(amount, seperator = ' ')
  if amount >= 0
    gsub!(/^/, seperator * amount)
  else
    gsub!(/^#{Regexp.escape(seperator)}{0,#{-amount}}/, '')
  end
end

#index_all(pattern) ⇒ Object



122
123
124
125
126
127
128
129
130
131
132
133
134
# File 'lib/lite/ruby/string.rb', line 122

def index_all(pattern)
  pattern = pattern.to_s if pattern.is_a?(Numeric)
  arr_indexes = []
  srch_index = rindex(pattern)

  while srch_index
    temp_string = self[0..(srch_index - 1)]
    arr_indexes << srch_index
    srch_index = srch_index.zero? ? nil : temp_string.rindex(pattern)
  end

  arr_indexes.reverse
end

#labelize(capitalize: true) ⇒ Object Also known as: labelcase



136
137
138
# File 'lib/lite/ruby/string.rb', line 136

def labelize(capitalize: true)
  dup.labelize!(capitalize: capitalize)
end

#labelize!(capitalize: true) ⇒ Object Also known as: labelcase!



140
141
142
143
144
145
146
147
# File 'lib/lite/ruby/string.rb', line 140

def labelize!(capitalize: true)
  underscore!
  tr!('_', ' ')
  squish!
  gsub!(/([a-z\d]*)/i, &:downcase)
  gsub!(/\A\w/) { |str| capitalize ? str.upcase : str }
  gsub!(/ id\z/, ' ID') || self
end

#last(limit = 1) ⇒ Object



76
77
78
79
80
81
82
83
84
# File 'lib/lite/ruby/safe/string.rb', line 76

def last(limit = 1)
  if limit.zero?
    ''
  elsif limit >= length
    self
  else
    from(-limit)
  end
end

#lchomp(match) ⇒ Object



149
150
151
# File 'lib/lite/ruby/string.rb', line 149

def lchomp(match)
  dup.lchomp!(match)
end

#lchomp!(match) ⇒ Object



153
154
155
156
157
158
# File 'lib/lite/ruby/string.rb', line 153

def lchomp!(match)
  return self unless index(match)

  self[0...match.size] = ''
  self
end

#methodizeObject



160
161
162
# File 'lib/lite/ruby/string.rb', line 160

def methodize
  dup.methodize!
end

#methodize!Object



164
165
166
167
168
169
170
# File 'lib/lite/ruby/string.rb', line 164

def methodize!
  gsub!(/([A-Z]+)([A-Z])/, '\1_\2')
  gsub!(/([a-z])([A-Z])/, '\1_\2')
  gsub!('/', '__')
  gsub!('::', '__')
  downcase! || self
end

#mixedcase?Boolean

Returns:

  • (Boolean)


183
184
185
# File 'lib/lite/ruby/string.rb', line 183

def mixedcase?
  !upcase? && !downcase?
end

#modulizeObject



172
173
174
# File 'lib/lite/ruby/string.rb', line 172

def modulize
  dup.modulize!
end

#modulize!Object



176
177
178
179
180
181
# File 'lib/lite/ruby/string.rb', line 176

def modulize!
  gsub!(/__(.?)/) { "::#{$1.upcase}" }
  gsub!(%r{/(.?)}) { "::#{$1.upcase}" }
  gsub!(/(?:_+|-+)([a-z])/) { $1.upcase }
  gsub!(/(\A|\s)([a-z])/) { $1 + $2.upcase } || self
end

#non_possessiveObject



187
188
189
# File 'lib/lite/ruby/string.rb', line 187

def non_possessive
  dup.non_possessive!
end

#non_possessive!Object



191
192
193
194
195
# File 'lib/lite/ruby/string.rb', line 191

def non_possessive!
  return self unless possessive?

  chomp!("'s") || chomp!("'") || self
end

#ordinalObject



197
198
199
# File 'lib/lite/ruby/string.rb', line 197

def ordinal
  to_i.ordinal
end

#ordinalizeObject



201
202
203
# File 'lib/lite/ruby/string.rb', line 201

def ordinalize
  to_i.ordinalize
end

#parameterize(separator: '-') ⇒ Object



86
87
88
89
90
91
92
# File 'lib/lite/ruby/safe/string.rb', line 86

def parameterize(separator: '-')
  str = dup
  str = str.underscore!
  str = str.gsub!(/\s+/, separator)
  str = str.downcase!
  str || self
end

#parameterize!(separator: '-') ⇒ Object



205
206
207
# File 'lib/lite/ruby/string.rb', line 205

def parameterize!(separator: '-')
  replace(parameterize(separator: separator))
end

#pathizeObject



209
210
211
# File 'lib/lite/ruby/string.rb', line 209

def pathize
  dup.pathize!
end

#pathize!Object



213
214
215
216
217
218
219
220
221
# File 'lib/lite/ruby/string.rb', line 213

def pathize!
  gsub!(/([A-Z]+)([A-Z])/, '\1_\2')
  gsub!(/([a-z])([A-Z])/, '\1_\2')
  gsub!('__', '/')
  gsub!('::', '/')
  gsub!(/\s+/, '')
  gsub!(/[?%*:|"<>.]+/, '')
  downcase! || self
end

#pollute(delimiter = '^--^--^') ⇒ Object



223
224
225
# File 'lib/lite/ruby/string.rb', line 223

def pollute(delimiter = '^--^--^')
  chars.map { |chr| "#{chr}#{delimiter}" }.join
end

#pollute!(delimiter = '^--^--^') ⇒ Object



227
228
229
# File 'lib/lite/ruby/string.rb', line 227

def pollute!(delimiter = '^--^--^')
  replace(pollute(delimiter))
end

#popObject



231
232
233
# File 'lib/lite/ruby/string.rb', line 231

def pop
  self[-1]
end

#possessiveObject



235
236
237
238
239
240
# File 'lib/lite/ruby/string.rb', line 235

def possessive
  return self if possessive?

  possession = end_with?('s') ? "'" : "'s"
  "#{self}#{possession}"
end

#possessive!Object



242
243
244
# File 'lib/lite/ruby/string.rb', line 242

def possessive!
  replace(possessive)
end

#possessive?Boolean

Returns:

  • (Boolean)


246
247
248
# File 'lib/lite/ruby/string.rb', line 246

def possessive?
  %w['s s'].any? { |pos| end_with?(pos) }
end

#push(string) ⇒ Object



250
251
252
# File 'lib/lite/ruby/string.rb', line 250

def push(string)
  replace(concat(string))
end

#quote(type = :double, amount = nil) ⇒ Object

rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength



255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
# File 'lib/lite/ruby/string.rb', line 255

def quote(type = :double, amount = nil)
  if type.is_a?(Integer)
    tmp = amount
    amount = type
    type = tmp || :mixed
  else
    amount ||= 1
  end

  case type.to_s
  when "'", 'single', 's', '1'
    f = "'" * amount
    b = f
  when '"', 'double', 'd', '2'
    f = '"' * amount
    b = f
  when '`', 'back', 'backtick', 'b', '-1'
    f = '`' * amount
    b = f
  when "`'", 'bracket', 'sb'
    f = '`' * amount
    b = "'" * amount
  when "'\"", 'mixed', 'm', 'Integer'
    c = (amount.to_f / 2).to_i
    f = '"' * c
    b = f

    if amount.odd?
      f = "'#{f}"
      b += "'"
    end
  else
    raise ArgumentError, "Invalid quote type: #{type.inspect}"
  end

  "#{f}#{self}#{b}"
end

#quote!(type = :double, amount = nil) ⇒ Object

rubocop:enable Metrics/AbcSize, Metrics/CyclomaticComplexity, Metrics/MethodLength



294
295
296
# File 'lib/lite/ruby/string.rb', line 294

def quote!(type = :double, amount = nil)
  replace(quote(type, amount))
end

#remove(*patterns) ⇒ Object



94
95
96
# File 'lib/lite/ruby/safe/string.rb', line 94

def remove(*patterns)
  dup.remove!(*patterns)
end

#remove!(*patterns) ⇒ Object



98
99
100
101
102
# File 'lib/lite/ruby/safe/string.rb', line 98

def remove!(*patterns)
  patterns.each_with_object(self) do |pat, str|
    pat.is_a?(Range) ? str.slice!(pat) : str.gsub!(pat, '')
  end
end

#remove_tagsObject



298
299
300
# File 'lib/lite/ruby/string.rb', line 298

def remove_tags
  dup.remove_tags!
end

#remove_tags!Object



302
303
304
# File 'lib/lite/ruby/string.rb', line 302

def remove_tags!
  gsub!(%r{</?[^>]*>}, '') || self
end

#rotate(amount = 1) ⇒ Object



306
307
308
# File 'lib/lite/ruby/string.rb', line 306

def rotate(amount = 1)
  dup.rotate!(amount)
end

#rotate!(amount = 1) ⇒ Object



310
311
312
313
# File 'lib/lite/ruby/string.rb', line 310

def rotate!(amount = 1)
  amount += size if amount.negative?
  slice!(amount, size - amount) + slice!(0, amount)
end

#safe_encode(target_encoding, replacement = '') ⇒ Object

rubocop:disable Metrics/MethodLength



316
317
318
319
320
321
322
323
324
325
326
327
328
# File 'lib/lite/ruby/string.rb', line 316

def safe_encode(target_encoding, replacement = '')
  encode(target_encoding)
rescue Encoding::InvalidByteSequenceError
  force_encoding(target_encoding).scrub!(replacement)
rescue Encoding::UndefinedConversionError
  encode(
    target_encoding,
    invalid: :replace,
    undef: :replace,
    replace: replacement,
    UNIVERSAL_NEWLINE_DECORATOR: true
  )
end

#safe_encode!(target_encoding, replacement = '') ⇒ Object

rubocop:enable Metrics/MethodLength



331
332
333
# File 'lib/lite/ruby/string.rb', line 331

def safe_encode!(target_encoding, replacement = '')
  replace(safe_encode(target_encoding, replacement))
end

#sample(separator = ' ') ⇒ Object



335
336
337
# File 'lib/lite/ruby/string.rb', line 335

def sample(separator = ' ')
  split(separator).sample
end

#sample!(separator = ' ') ⇒ Object



339
340
341
# File 'lib/lite/ruby/string.rb', line 339

def sample!(separator = ' ')
  replace(sample(separator))
end

#shift(*patterns) ⇒ Object



343
344
345
# File 'lib/lite/ruby/string.rb', line 343

def shift(*patterns)
  dup.shift!(*patterns)
end

#shift!(*patterns) ⇒ Object



347
348
349
350
351
# File 'lib/lite/ruby/string.rb', line 347

def shift!(*patterns)
  return self[0] if patterns.empty?

  patterns.each_with_object(self) { |pat, str| str.sub!(pat, '') }
end

#shuffle(separator = '') ⇒ Object



353
354
355
# File 'lib/lite/ruby/string.rb', line 353

def shuffle(separator = '')
  split(separator).shuffle.join
end

#shuffle!(separator = '') ⇒ Object



357
358
359
# File 'lib/lite/ruby/string.rb', line 357

def shuffle!(separator = '')
  replace(shuffle(separator))
end

#sift(keep) ⇒ Object



361
362
363
364
365
366
367
368
369
370
# File 'lib/lite/ruby/string.rb', line 361

def sift(keep)
  keep = case keep
         when String then keep.chars
         when Array then keep.map(&:to_s)
         when Range then keep.to_a.map(&:to_s)
         else raise TypeError, "Invalid parameter: #{keep.inspect}"
         end

  chars.keep_if { |chr| keep.include?(chr) }.join
end

#sift!(keep) ⇒ Object



372
373
374
# File 'lib/lite/ruby/string.rb', line 372

def sift!(keep)
  replace(sift(keep))
end

#slugifyObject



376
377
378
# File 'lib/lite/ruby/string.rb', line 376

def slugify
  dup.slugify!
end

#slugify!Object



380
381
382
383
384
385
386
# File 'lib/lite/ruby/string.rb', line 380

def slugify!
  gsub!(/[^\x00-\x7F]+/, '')
  gsub!(/[^\w_ \-]+/i, '')
  gsub!(/[ \-]+/i, '-')
  gsub!(/^-|-$/i, '')
  downcase! || self
end

#sortObject



388
389
390
# File 'lib/lite/ruby/string.rb', line 388

def sort
  chars.sort.join
end

#sort!Object



392
393
394
# File 'lib/lite/ruby/string.rb', line 392

def sort!
  replace(sort)
end

#squishObject



104
105
106
# File 'lib/lite/ruby/safe/string.rb', line 104

def squish
  dup.squish!
end

#squish!Object



108
109
110
111
# File 'lib/lite/ruby/safe/string.rb', line 108

def squish!
  strip!
  gsub!(/\s+/, ' ') || self
end

#titleizeObject Also known as: titlecase



113
114
115
116
117
118
119
# File 'lib/lite/ruby/safe/string.rb', line 113

def titleize
  str = dup
  str = str.underscore!
  str = str.humanize!
  str = str.gsub!(/\b(?<!['’`])[a-z]/) { $&.capitalize }
  str || self
end

#titleize!Object Also known as: titlecase!



400
401
402
# File 'lib/lite/ruby/string.rb', line 400

def titleize!
  replace(titleize)
end

#to(position) ⇒ Object



121
122
123
# File 'lib/lite/ruby/safe/string.rb', line 121

def to(position)
  self[0..position]
end

#to_time(form = :local) ⇒ Object Also known as: to_t

rubocop:disable Metrics/AbcSize, Metrics/CyclomaticComplexity rubocop:disable Metrics/MethodLength, Metrics/PerceivedComplexity



127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# File 'lib/lite/ruby/safe/string.rb', line 127

def to_time(form = :local)
  parts = Date.parse(self, false)
  used_keys = i[year mon mday hour min sec sec_fraction offset]
  return if (parts.keys & used_keys).empty?

  now = Time.now
  time = Time.new(
    parts[:year] || now.year,
    parts[:mon] || now.month,
    parts[:mday] || now.day,
    parts[:hour] || 0,
    parts[:min] || 0,
    (parts[:sec] || 0) + (parts[:sec_fraction] || 0),
    parts[:offset] || (form == :utc ? 0 : nil)
  )

  form == :utc ? time.utc : time.to_time
end

#transliterateObject

rubocop:enable Metrics/MethodLength, Metrics/PerceivedComplexity rubocop:enable Metrics/AbcSize, Metrics/CyclomaticComplexity



148
149
150
# File 'lib/lite/ruby/safe/string.rb', line 148

def transliterate
  TRANSLITERATIONS.each_with_object(dup) { |(k, v), s| s.gsub!(k, v) }
end

#transliterate!Object



396
397
398
# File 'lib/lite/ruby/string.rb', line 396

def transliterate!
  replace(transliterate)
end

#truncate(truncate_at, options = {}) ⇒ Object



152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
# File 'lib/lite/ruby/safe/string.rb', line 152

def truncate(truncate_at, options = {})
  return self unless length > truncate_at

  omission = options[:omission] || '...'
  seperator = options[:separator]

  size_with_room_for_omission = truncate_at - omission.length

  stop = if seperator
           rindex(seperator || '', size_with_room_for_omission) || size_with_room_for_omission
         else
           size_with_room_for_omission
         end

  "#{self[0, stop]}#{omission}"
end

#truncate_words(word_count, options = {}) ⇒ Object



404
405
406
407
408
409
410
411
412
# File 'lib/lite/ruby/string.rb', line 404

def truncate_words(word_count, options = {})
  omission = options[:omission] || '...'
  seperator = options[:separator] || /\s+/

  seperator = Regexp.escape(seperator.to_s) unless seperator.is_a(Regexp)
  return self unless /\A((?:.+?#{seperator}){#{word_count - 1}}.+?)#{seperator}.*/m.match?(self)

  "#{::Regexp.last_match(1)}#{omission}"
end

#underscoreObject Also known as: snakecase



169
170
171
172
173
174
175
176
177
178
# File 'lib/lite/ruby/safe/string.rb', line 169

def underscore
  str = dup
  str = str.camelize!
  str = str.gsub!(/::/, '/')
  str = str.gsub!(/([A-Z\d]+)([A-Z][a-z])/, '\1_\2')
  str = str.gsub!(/([a-z\d])([A-Z])/, '\1_\2')
  str = str.tr!('-', '_')
  str = str.downcase!
  str || self
end

#underscore!Object Also known as: snakecase!



418
419
420
# File 'lib/lite/ruby/string.rb', line 418

def underscore!
  replace(underscore)
end

#unpollute(delimiter = '^--^--^') ⇒ Object



422
423
424
# File 'lib/lite/ruby/string.rb', line 422

def unpollute(delimiter = '^--^--^')
  dup.unpollute!(delimiter)
end

#unpollute!(delimiter = '^--^--^') ⇒ Object



426
427
428
# File 'lib/lite/ruby/string.rb', line 426

def unpollute!(delimiter = '^--^--^')
  gsub!(delimiter, '') || self
end

#unquoteObject



430
431
432
# File 'lib/lite/ruby/string.rb', line 430

def unquote
  dup.unquote!
end

#unquote!Object



434
435
436
437
438
439
440
441
442
# File 'lib/lite/ruby/string.rb', line 434

def unquote!
  [0, -1].each do |i|
    case self[i, 1]
    when "'", '"', '`' then self[i] = ''
    end
  end

  self
end

#unshift(*patterns) ⇒ Object



444
445
446
447
# File 'lib/lite/ruby/string.rb', line 444

def unshift(*patterns)
  patterns.each_with_object('') { |pat, str| str << pat }
          .concat(self)
end

#unshift!(*patterns) ⇒ Object



449
450
451
# File 'lib/lite/ruby/string.rb', line 449

def unshift!(*patterns)
  replace(unshift(*patterns))
end

#upcase?Boolean

Returns:

  • (Boolean)


414
415
416
# File 'lib/lite/ruby/string.rb', line 414

def upcase?
  upcase == self
end

#variablizeObject



466
467
468
# File 'lib/lite/ruby/string.rb', line 466

def variablize
  "@#{gsub(/\W/, '_')}"
end

#variablize!Object



470
471
472
# File 'lib/lite/ruby/string.rb', line 470

def variablize!
  replace(variablize)
end

#wordsObject



453
454
455
# File 'lib/lite/ruby/string.rb', line 453

def words
  split(/\s+/)
end

#words_without_punctuationObject



457
458
459
460
461
462
463
464
# File 'lib/lite/ruby/string.rb', line 457

def words_without_punctuation
  str = dup
  str.gsub!(%r{[.?¿¡…!,::;—"。?!、‘“”„«»〈〉《》,/\[\]]}, ' ')
  str.gsub!('- ', ' ')
  str.squeeze!(' ')
  str.strip!
  str.words
end