module Marc4R::Fields::Datable

Attributes

data[RW]

Public Instance Methods

=~(pattern) click to toggle source
# File lib/marc4r/fields.rb, line 17
def =~(pattern)
  if data
    data =~ pattern
  else
    nil
  end
end