Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Postgres/src/backend/utils/mb/Unicode/   (Postgres Database Version 18.4©)  Datei vom 11.4.2026 mit Größe 1 kB image not shown  

Quelle  UCS_to_UHC.pl

  Sprache: Shell
 

#! /usr/bin/perl
#
# Copyright (c) 2007-2025, PostgreSQL Global Development Group
#
# src/backend/utils/mb/Unicode/UCS_to_GB18030.pl
#
# Generate UTF-8 <--> UHC code conversion tables from
# "windows-949-2000.xml", obtained from
http://source.icu-project.org/repos/icu/data/trunk/charset/data/xml/
#
# The lines we care about in the source file look like
#    <a u="009A" b="81 30 83 36"/>
# where the "u" field is the Unicode code point in hex,
# and the "b" field is the hex byte sequence for UHC

use strict;
use warnings FATAL => 'all';

use convutils;

my $this_script = 'src/backend/utils/mb/Unicode/UCS_to_UHC.pl';

# Read the input

my $in_file = "windows-949-2000.xml";

open(my $in, '<', $in_file) || die("cannot open $in_file");

my @mapping;

while (<$in>)
{
 next if (!m/<a u="([0-9A-F]+)" b="([0-9A-F ]+)"/);
 my ($u, $c) = ($1, $2);
 $c =~ s/ //g;
 my $ucs = hex($u);
 my $code = hex($c);

 next if ($code == 0x0080 || $code == 0x00FF);

 if ($code >= 0x80 && $ucs >= 0x0080)
 {
  push @mapping,
    {
   ucs => $ucs,
   code => $code,
   direction => BOTH,
   f => $in_file,
   l => $.
    };
 }
}
close($in);

# One extra character that's not in the source file.
push @mapping,
  {
 direction => BOTH,
 code => 0xa2e8,
 ucs => 0x327e,
 comment => 'CIRCLED HANGUL IEUNG U',
 f => $this_script,
 l => __LINE__
  };

print_conversion_tables($this_script, "UHC", \@mapping);

Messung V0.5 in Prozent
C=100 H=94 G=96

¤ Dauer der Verarbeitung: 0.15 Sekunden  (vorverarbeitet am  2026-08-08) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.