Class: CharDet::MBCSGroupProber

Inherits:
CharSetGroupProber
  • Object
show all
Defined in:
lib/rchardet/mbcsgroupprober.rb

Instance Method Summary collapse

Constructor Details

#initializeMBCSGroupProber

Returns a new instance of MBCSGroupProber.



33
34
35
36
37
38
39
40
41
42
43
44
45
# File 'lib/rchardet/mbcsgroupprober.rb', line 33

def initialize
  super
  @_mProbers = [ 
  UTF8Prober.new,
  SJISProber.new,
  EUCJPProber.new,
  GB2312Prober.new,
  EUCKRProber.new,
  Big5Prober.new,
  EUCTWProber.new
  ]
  reset()
end