Class: Regex::Multiplicity

Inherits:
Object
  • Object
show all
Defined in:
lib/regex/multiplicity.rb

Overview

The multiplicity specifies by how much a given expression can be repeated.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(aLowerBound, anUpperBound, aPolicy) ⇒ Multiplicity

Returns a new instance of Multiplicity.

Options Hash (aPolicy):

  • :greedy (Symbol)
  • :lazy (Symbol)
  • :possessive (Symbol)


24
25
26
27
28
# File 'lib/regex/multiplicity.rb', line 24

def initialize(aLowerBound, anUpperBound, aPolicy)
  @lower_bound = valid_lower_bound(aLowerBound)
  @upper_bound = valid_upper_bound(anUpperBound)
  @policy = valid_policy(aPolicy)
end

Instance Attribute Details

#lower_boundInteger (readonly)



9
10
11
# File 'lib/regex/multiplicity.rb', line 9

def lower_bound
  @lower_bound
end

#policySymbol

Returns An indicator that specifies how to repeat.

See Also:



16
17
18
# File 'lib/regex/multiplicity.rb', line 16

def policy
  @policy
end

#upper_boundInteger, Symbol (readonly)



12
13
14
# File 'lib/regex/multiplicity.rb', line 12

def upper_bound
  @upper_bound
end

Instance Method Details

#to_strString



31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# File 'lib/regex/multiplicity.rb', line 31

def to_str
  case upper_bound
    when :more
      case lower_bound
        when 0
          subresult = '*'
        when 1
          subresult = '+'
        else
          subresult = "{#{lower_bound},}"
      end

    when lower_bound
      subresult = "{#{lower_bound}}"
    else
      if [lower_bound, upper_bound] == [0, 1]
        subresult = '?'
      else
        subresult = "{#{lower_bound},#{upper_bound}}"
      end
  end

  policy2suffix = {
    greedy: '',
    lazy: '?',
    possessive: '+'
  }

  subresult + policy2suffix[policy]
end