Sha256: ae384ac1949ad7cae02df84f61f9163a7a4e49b9f7f30782bf19858b846f8f74

Contents?: true

Size: 325 Bytes

Versions: 1

Compression:

Stored size: 325 Bytes

Contents

module RegexpExamples
  # Number of times to repeat for Star and Plus repeaters
  TIMES = 2

  # Set of chars for Dot and negated [^] char groups
  #CHARS = [("a".."z").to_a, ("A".."Z").to_a, ".", ",", ";"].flatten
  #TODO: Make these character sets more complete
  #e.g. Sets for \d, \w, \h, \s
  CHARS = %w{a b c d e}
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
regexp-examples-0.0.0 lib/regexp-examples/constants.rb