Module | XSD::Charset |
In: |
lib/xsd/charset.rb
|
EncodingConvertMap | = | {} | Maps | |
CharsetMap | = | { 'NONE' => 'us-ascii', 'EUC' => 'euc-jp', 'SJIS' => 'shift_jis', 'UTF8' => 'utf-8', 'X_ISO_8859_1' => 'iso-8859-1', 'X_UNKNOWN' => nil, } | ||
USASCIIRegexp | = | Regexp.new("\\A#{us_ascii}*\\z", nil, "NONE") | ||
EUCRegexp | = | Regexp.new("\\A#{character_euc}*\\z", nil, "NONE") | ||
SJISRegexp | = | Regexp.new("\\A#{character_sjis}*\\z", nil, "NONE") | ||
UTF8Regexp | = | Regexp.new("\\A#{character_utf8}*\\z", nil, "NONE") |
ruby-doc.org is a service of James Britt and Neurogami, a Ruby application development company in Phoenix, AZ.
Documentation content on ruby-doc.org is provided by remarkable members of the Ruby community.
For more information on the Ruby programming language, visit ruby-lang.org.
Want to help improve Ruby's API docs? See Ruby Documentation Guidelines.