Class: MatchData
Instance Attribute Summary collapse
-
#post_match ⇒ Object
readonly
Returns the value of attribute post_match.
-
#pre_match ⇒ Object
readonly
Returns the value of attribute pre_match.
-
#regexp ⇒ Object
readonly
Returns the value of attribute regexp.
-
#string ⇒ Object
readonly
Returns the value of attribute string.
Instance Method Summary collapse
- #==(other) ⇒ Object (also: #eql?)
- #[](*args) ⇒ Object
- #begin(n) ⇒ Object
- #captures ⇒ Object
- #end(n) ⇒ Object
-
#initialize(regexp, match_groups) ⇒ MatchData
constructor
A new instance of MatchData.
- #inspect ⇒ Object
- #length ⇒ Object (also: #size)
- #offset(n) ⇒ Object
- #to_a ⇒ Object
- #to_s ⇒ Object
- #values_at(*args) ⇒ Object
Constructor Details
#initialize(regexp, match_groups) ⇒ MatchData
Returns a new instance of MatchData
210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 |
# File 'opal/opal/corelib/regexp.rb', line 210 def initialize(regexp, match_groups) $~ = self @regexp = regexp @begin = `match_groups.index` @string = `match_groups.input` @pre_match = `match_groups.input.slice(0, match_groups.index)` @post_match = `match_groups.input.slice(match_groups.index + match_groups[0].length)` @matches = [] %x{ for (var i = 0, length = match_groups.length; i < length; i++) { var group = match_groups[i]; if (group == null) { #@matches.push(nil); } else { #@matches.push(group); } } } end |
Instance Attribute Details
#post_match ⇒ Object (readonly)
Returns the value of attribute post_match
208 209 210 |
# File 'opal/opal/corelib/regexp.rb', line 208 def post_match @post_match end |
#pre_match ⇒ Object (readonly)
Returns the value of attribute pre_match
208 209 210 |
# File 'opal/opal/corelib/regexp.rb', line 208 def pre_match @pre_match end |
#regexp ⇒ Object (readonly)
Returns the value of attribute regexp
208 209 210 |
# File 'opal/opal/corelib/regexp.rb', line 208 def regexp @regexp end |
#string ⇒ Object (readonly)
Returns the value of attribute string
208 209 210 |
# File 'opal/opal/corelib/regexp.rb', line 208 def string @string end |
Instance Method Details
#==(other) ⇒ Object Also known as: eql?
246 247 248 249 250 251 252 253 254 |
# File 'opal/opal/corelib/regexp.rb', line 246 def ==(other) return false unless MatchData === other `self.string == other.string` && `self.regexp.toString() == other.regexp.toString()` && `self.pre_match == other.pre_match` && `self.post_match == other.post_match` && `self.begin == other.begin` end |
#[](*args) ⇒ Object
233 234 235 |
# File 'opal/opal/corelib/regexp.rb', line 233 def [](*args) @matches[*args] end |
#begin(n) ⇒ Object
258 259 260 261 262 263 264 265 |
# File 'opal/opal/corelib/regexp.rb', line 258 def begin(n) %x{ if (n !== 0) { #{raise ArgumentError, 'MatchData#begin only supports 0th element'} } return self.begin; } end |
#captures ⇒ Object
276 277 278 |
# File 'opal/opal/corelib/regexp.rb', line 276 def captures `#@matches.slice(1)` end |
#end(n) ⇒ Object
267 268 269 270 271 272 273 274 |
# File 'opal/opal/corelib/regexp.rb', line 267 def end(n) %x{ if (n !== 0) { #{raise ArgumentError, 'MatchData#end only supports 0th element'} } return self.begin + self.matches[n].length; } end |
#inspect ⇒ Object
280 281 282 283 284 285 286 287 288 289 290 |
# File 'opal/opal/corelib/regexp.rb', line 280 def inspect %x{ var str = "#<MatchData " + #{`#@matches[0]`.inspect}; for (var i = 1, length = #@matches.length; i < length; i++) { str += " " + i + ":" + #{`#@matches[i]`.inspect}; } return str + ">"; } end |
#length ⇒ Object Also known as: size
292 293 294 |
# File 'opal/opal/corelib/regexp.rb', line 292 def length `#@matches.length` end |
#offset(n) ⇒ Object
237 238 239 240 241 242 243 244 |
# File 'opal/opal/corelib/regexp.rb', line 237 def offset(n) %x{ if (n !== 0) { #{raise ArgumentError, 'MatchData#offset only supports 0th element'} } return [self.begin, self.begin + self.matches[n].length]; } end |
#to_a ⇒ Object
298 299 300 |
# File 'opal/opal/corelib/regexp.rb', line 298 def to_a @matches end |
#to_s ⇒ Object
302 303 304 |
# File 'opal/opal/corelib/regexp.rb', line 302 def to_s `#@matches[0]` end |
#values_at(*args) ⇒ Object
306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 |
# File 'opal/opal/corelib/regexp.rb', line 306 def values_at(*args) %x{ var i, a, index, values = []; for (i = 0; i < args.length; i++) { if (args[i].$$is_range) { a = #{`args[i]`.to_a}; a.unshift(i, 1); Array.prototype.splice.apply(args, a); } index = #{Opal.coerce_to!(`args[i]`, Integer, :to_int)}; if (index < 0) { index += #@matches.length; if (index < 0) { values.push(nil); continue; } } values.push(#@matches[index]); } return values; } end |