Factbites
 Where results make sense
About us   |   Why use us?   |   Reviews   |   PR   |   Contact us  

Topic: EBCDIC 037


Related Topics

In the News (Sat 2 Jun 12)

  
 perlebcdic(1) - perlebcdic - Considerations for running Perl on EBCDIC platforms - man 1 perlebcdic   (Site not responding. Last check: 2007-10-16)
EBCDIC The Extended Binary Coded Decimal Interchange Code refers to a large collection of slightly different single and multi byte coded character sets that are different from ASCII or ISO 8859-1 and typically run on host computers.
Unicode code points versus EBCDIC code points In Unicode terminology a code point is the number assigned to a charac- ter: for example, in EBCDIC the character "A" is usually assigned the number 193.
However, the concern may be with characters rather than code points and on an EBCDIC machine it may be desirable for constructs such as "if (is_print_ascii("A")) {print "A is a printable character\n";}" to print out the expected message.
tautology.org /software/man/1/perlebcdic   (2069 words)

  
 Manual Pages - perlebcdic(1)
However, the concern may be with characters rather than code points and on an EBCDIC machine it may be desirable for constructs such as "if (is_print_ascii("A")) {print "A is a printable charac- ter\n";}" to print out the expected message.
With a Unicode enabled Perl you might try: tr/^?/\x{178}/; The strategy of mono casing data before sorting does not preserve the case of the data and may not be acceptable for that reason.
A single alphabet shift is sometimes referred to as a rotation and the shift amount is given as a number $n after the string 'rot' or "rot$n".
www.cs.yorku.ca /tdb/_doc.php/man/name/perlebcdic/section   (2856 words)

  
 perlebcdic - Considerations for running Perl on EBCDIC platforms   (Site not responding. Last check: 2007-10-16)
Among IBM EBCDIC character code sets there are 13 characters that are often mapped to different integer values.
EBCDIC sort results may differ from ASCII sort results especially for mixed case strings.
The property of lower case before uppercase letters in EBCDIC is even carried to the Latin 1 EBCDIC pages such as 0037 and 1047.
pvhp.best.vwh.net /os390/doc/perlebcdic.html   (3626 words)

  
 perlebcdic(1) - perlebcdic - Considerations for running Perl on EBCDIC platforms - man 1 perlebcdic   (Site not responding. Last check: 2007-10-16)
EBCDIC The Extended Binary Coded Decimal Interchange Code refers to a large collection of slightly different single and multi byte coded character sets that are different from ASCII or ISO 8859-1 and typically run on host(1,5) computers.
Some IBM EBCDIC character sets may be known by character code set(7,n,1 builtins) iden- tification numbers (CCSID numbers) or code page numbers.
Unicode code points versus EBCDIC code points In Unicode terminology a code point is the number assigned to a charac- ter: for example, in(1,8) EBCDIC the character "A" is usually assigned the number 193.
seth.positivism.org /man.cgi/1/perlebcdic   (1567 words)

  
 Definition of EBCDIC
An IBM card punch could make a 12-row punch card with up to 2 punches per column, the first punch somewhere in the first 3 rows (called the zone) and the second punch somewhere in the last 9 rows (called the number).
The zone could thus be considered a value from 0 to 3, and the number a value from 0 to 9, where 0 means no punch, and non-zero means the corresponding row was punched.
The initial version of EBCDIC was just (0xf-zone)<<4+number and defined only the lower-left 10x4 part of the table shown below (the zone was apparently reversed so the letters would at least be in alphabetic order).
www.wordiq.com /definition/EBCDIC   (732 words)

  
 [No title]   (Site not responding. Last check: 2007-10-16)
To determine the character set you are running under from perl one could use the return value of ord() or chr() to test one or more character values.
The data in the table are in ASCII order hence the EBCDIC columns provide easy to use ASCII to EBCDIC operations that are also easily reversed.
One big difference between ASCII based character sets and EBCDIC ones are the relative positions of upper and lower case letters and the letters compared to the digits.
www.sins.com.au /unix/manpages/perlebcdic.html   (2970 words)

  
 V7 & higher SAS Note SN-011464: EBCDIC and ASCII translation tables in Release 8.2
Prior to SAS Release 8.2 the only supplied translation (conversion) tables are hard-coded tables to convert from EBCDIC to ASCII or vice versa.
A simple U.S. English EBCDIC (CECP 037) to ASCII (7-bit, 128-character code) is used.
The upper 128 ASCII code points, which are used for national characters, vary from one 8-bit ASCII extension to another, and from one code page to another.
support.sas.com /techsup/unotes/SN/011/011464.html   (312 words)

  
 perlebcdic - Considerations for running Perl on EBCDIC platforms
In Unicode terminology a code point is the number assigned to a character: for example, in EBCDIC the character ``A'' is usually assigned the number 193.
The extensions Unicode::Collate and Unicode::Normalized are not supported under EBCDIC, likewise for the encoding pragma.
Perl may work with an internal UTF-EBCDIC encoding form for wide characters on EBCDIC platforms in a manner analogous to the way that it works with the UTF-8 internal encoding form on ASCII based platforms.
www.fiveanddime.net /pod/perlebcdic.pod.html   (4352 words)

  
 search.cpan.org: perlebcdic - Considerations for running Perl on EBCDIC platforms
The layout on the cards was such that high bits were set for the upper and lower case alphabet characters [a-z] and [A-Z], but there were gaps within each latin alphabet range.
POSIX-BC The EBCDIC code page in use on Siemens' BS2000 system is distinct from 1047 and 0037.
Rot13 has the interesting property that alternate subsequent invocations are identity maps (thus rot13 is its own non-trivial inverse in the group of 26 alphabet rotations).
search.cpan.org /~gsar/perl/pod/perlebcdic.pod   (3640 words)

  
 [PATCH] Code clean up for perlebcdic.pod
But note too that -because "\n" is chr(13) and "\r" is chr(10) on the MacIntosh (which is an +from either a CCSID 0037, a 1047, or a POSIX-BC EBCDIC machine since "\r" eq +chr(13) under all of those coded character sets.
'/'; To convert from EBCDIC 037 to ASCII just reverse the order of the tr/// @@ -601,12 +684,12 @@ shell utility from within perl would be to: # OS/390 or z/OS example - $ascii_data = `echo '$ebcdic_data'
Examples of usage on EBCDIC include: + my $foo; $foo = pack("CCCC",193,194,195,196); # $foo eq "ABCD" - $foo = pack("C4",193,194,195,196); + $foo = pack("C4", 193,194,195,196); # same thing $foo = pack("ccxxcc",193,194,195,196); @@ -759,7 +843,7 @@ See the discussion of printf() above.
www.mail-archive.com /perl-documentation@perl.org/msg00197.html   (853 words)

  
 perlebcdic - Considerations for running Perl on EBCDIC platforms
To determine the character set you are running under from perl one could use the return value of
Perl on EBCDIC machines has been ported to take ``\c@'' to
must be given an EBCDIC code number argument to yield a desired character return value on an EBCDIC machine.
www.ee.adfa.edu.au /staff/hrp/webDesignHelp/perl/html/lib/Pod/perlebcdic.html   (3695 words)

  
 Intercommunication Guide
The EBCDIC IBM-037 code page is one example of such a code page; the ASCII IBM-850 is another.
The system that is not normally using EBCDIC is responsible for the translation, but this translation is an internal CICS function and does not require user setup.
However, because CICS resource names are always flowed across the connection in EBCDIC (IBM-037), a conversion is required at both ends of the connection.
www.umiacs.umd.edu /~jhu/DOCS/TX4.2/html/erzhad/erzhad14.htm   (7527 words)

  
 perlebcdic Manpage   (Site not responding. Last check: 2007-10-16)
NAME perlebcdic - Considerations for running Perl on EBCDIC platforms DESCRIPTION An exploration of some of the issues facing Perl programmers on EBCDIC based computers.
Perl on EBCDIC machines has been ported to take "\c@" to chr(0) and "\cA" to chr(1) as well, but the thirty three characters that result depend on which code page you are using.
Examples include: printf("%c%c%c",193,194,195); # prints ABC sort() EBCDIC sort results may differ from ASCII sort results espe- cially for mixed case strings.
www.netmoon.com /web/manpage/en/p/perlebcdic.html   (2010 words)

  
 2A Data: CMS (HCFA) PS&R Reconciliation Report Translation
These reports are normally formatted as EBCDIC, Variable Blocked, and Variable Record Length data sets.
In addition, the data is usually to 9-track, 3480, 3490, 3490e or 3590 tape.
Mainframe multi-dimensional tables are often output to tape as EBCDIC, Variable Blocked, and Variable Record Length data sets.
2adata.com   (321 words)

  
 EBCDIC   (Site not responding. Last check: 2007-10-16)
Der EBCDIC ist aus dem älteren 4-Bit-Code BCD (Binary Coded Decimals) entstanden.
EBCDIC ist neben ASCII und dessen Erweiterungen (einschließlich Unicode) der einzige Zeichensatz, der noch eine gewisse Verbreitung hat.
Ähnlich wie das Unicode Transformation Format UTF-8 eine Kodierung von Unicode unter Beibehaltung der Kodierung des ASCII-Zeichensatzes darstellt, gibt es eine Unicode-Kodierung, die auf EBCDIC aufbaut.
www.netzwelt.de /lexikon/EBCDIC.html   (125 words)

  
 Dictionary of Meaning www.mauspfeil.net   (Site not responding. Last check: 2007-10-16)
Codepage 037 is an EBCDIC-codepage with full ISO 8859-1 Latin-1-charset.
(For Ireland and the United Kingdom: see EBCDIC 285 codepage 285.
There you find a list of all editors and the possibility to edit the original text of the article EBCDIC 037.
www.mauspfeil.net /EBCDIC_037.html   (130 words)

  
 algol03.htm
Line 10003000 declares a translatetable, a special value array used by the hardware to translate characters from one form to another.
In our case we are leaving each ebcdic character unchanged except that we are changing A to E, B to D, D to B, and E to A. We use this translatetable at line 10009000.
Since the translate table is a special kind of value array, it is read only, and its descriptor also lies in the code stack.
ourworld.compuserve.com /homepages/rrclough/algol03.htm   (1437 words)

  
 Application Development Guide   (Site not responding. Last check: 2007-10-16)
If the code page of the database is 819 (ISO Latin-1), this sequence sorts character strings that are not FOR BIT DATA according to the host CCSID 037 (EBCDIC US English) binary collation.
If the code page of the database is 850 (ASCII Latin-1), this sequence sorts character strings that are not FOR BIT DATA according to the host CCSID 037 (EBCDIC US English) binary collation.
If the code page of the database is 1252 (Windows Latin-1), this sequence sorts character strings that are not FOR BIT DATA according to the host CCSID 037 (EBCDIC US English) binary collation.
www.pdc.kth.se:81 /doc/SP/manuals/db2-7.1/html/db2a0/db2a0177.htm   (813 words)

  
 IBM TXSeries : Library : Manuals : NT   (Site not responding. Last check: 2007-10-16)
When a request is received from another CICS for Windows NT region, a shortcode is included in the flow that identifies the code page the transaction is using.
However, if requests for a particular resource are always in the same code page, you can store that resource on your system in that code page, thus avoiding the need to convert.
In this example, the only systems that need access to FILE B on REGIONC are EBCDIC systems using IBM-037.
www-306.ibm.com /software/htp/txseries/library/manuals/nt/atsfad/atsfad1h.htm   (2403 words)

  
 PERLEBCDIC(1)   (Site not responding. Last check: 2007-10-16)
() must be given an EBCDIC code number argument to yield a desired character return value on an EBCDIC machine.
() The formats that can convert characters to numbers and vice versa will be different from their ASCII counterparts when executed on an EBCDIC machine.
() EBCDIC sort results may differ from ASCII sort results especially for mixed case strings.
h30097.www3.hp.com /docs/iass/OSIS_59/documents/MAN/MAN1/0120____.HTM   (2910 words)

  
 Intercommunication Guide
SBCS EBCDIC Korean SBCS extended to PC-ASCII Korean SBCS
DBCS EBCDIC Korean DBCS to PC-ASCII Korean DBCS
EUC EBCDIC Japanese Katakana Kanji Mixed to euc Japanese Mixed 954
www.umiacs.umd.edu /~jhu/DOCS/TX4.2/html/erzhad/erzhad29.htm   (1091 words)

  
 trans130: EBCDIC Character Encoding Information
This information may be used free of charge at your own risk.
By far not all EBCDIC Character Encodings are listed here.
These C0 codes are common to all EBCDIC encodings below.
www.kostis.net /charsets/trans130/ebcdic.htm   (139 words)

  
 perlunity.de | Perl-Handbuch : perlebcdic | An Experience of Community, Perl, CGI and Web-Programming   (Site not responding. Last check: 2007-10-16)
(If Unicode code points were applied consistently over all the possible code points, pack("U",ord("A")) would in EBCDIC equal A with acute or chr(101), and unpack("U", "A") would equal 65, or non-breaking space, not 193, or ord "A".)
For doing I/O it is suggested that you use the autotranslating features of PerlIO, see perluniintro.
Obviously the first of these will fail to distinguish most ASCII machines from either a CCSID 0037, a 1047, or a POSIX-BC EBCDIC machine since "\r" eq chr(13) under all of those coded character sets.
www.perl-archiv.de /sid2178019821425/perl/handbuch/perlebcdic.shtml   (4302 words)

  
 [No title]   (Site not responding. Last check: 2007-10-16)
=head2 EBCDIC The Extended Binary Coded Decimal Interchange Code refers to a large collection of slightly different single and multi byte coded character sets that are different from ASCII or ISO 8859-1 and typically run on host computers.
However, the concern may be with characters rather than code points and on an EBCDIC machine it may be desirable for constructs such as C
=head1 SORTING One big difference between ASCII based character sets and EBCDIC ones are the relative positions of upper and lower case letters and the letters compared to the digits.
pvhp.best.vwh.net /os390/doc/perlebcdic.pod.txt   (2918 words)

  
 Diphthongs and umlauts, EBCDIC or ASCII, ... some of my favorite things   (Site not responding. Last check: 2007-10-16)
Believe it or not there may be hundreds of ASCII and EBCDIC coded character sets customized for this and that purpose.
For example, code point x'C1' for all EBCDIC code pages (native encodings) stands for the uppercase letter 'A'.
When translating between ASCII and EBCDIC code pages, the problems are worsened if the data contains characters not common to both code pages.
www.multi-platforms.com /Tips/DiphthongsUmlauts.htm   (663 words)

  
 Linux: perlebcdic   (Site not responding. Last check: 2007-10-16)
EBCDIC The Extended Binary Coded Decimal Interchange Code refers to a large collection of slightly different single and multi byte coded character Among IBM EBCDIC character code sets there are 13 characters that are often mapped to different integer values.
For example, to convert ASCII to code page 037 take the output of the second column from the output of recipe 0 (modified to add \\ charac- ters) and use it in tr/// like so: '\175\112\113\114\115\116\117\120\121\122\271\373\374\371\372\377'.
The Web Freaks, INC. does not claim any ownership of author written content.
www.linuxforum.com /man/perlebcdic.1.php?close_left=true   (1638 words)

  
 ebcdicdb.cbl -- Create a database with EBCDIC 037 standard collating sequence (IBM COBOL)
ebcdicdb.cbl -- Create a database with EBCDIC 037 standard collating sequence (IBM COBOL)
This can be used by ** applications that require compatibility to the collating ** behaviour of host database products.
For example, simulating ** the collating behaviour, in a DB2/MVS CCSID 500 (EBCDIC ** International) database, in a DB2/CS codepage 819 ** (ISO Latin/1) database, can be achived by specifying ** a collating sequence that maps codepage 819 characters ** to CCSID 500 characters when the database is created.
www.cs.yorku.ca /tdb/_doc.php/userg/sw/DB2/doc/ad/samples/cobol/s-ebcdicdb-cbl.htm   (335 words)

  
 EBCDIC - ASCII - PowerBASIC Forums
Almost every language/country has its own character-set, called CODEPAGE.
In Denmark we use CODEPAGE 277 in EBCDIC and CODEPAGE 865 (or 850) in ASCII.
' Author : Michael Mattias Racine WI ' NOTE: Both the ASCII and EBCDIC character sets are national; that is, may vary
www.powerbasic.com /support/forums/Forum7/HTML/000518.html   (676 words)

  
 [No title]   (Site not responding. Last check: 2007-10-16)
000089: * EBCDIC 037 -> ASCII (IBM PC 437)
000165: * ASCII (IBM PC 437) -> EBCDIC 500
000238: * EBCDIC 500 -> ASCII (IBM PC 437)
linuxcpd.sourceforge.net /linux-2.4.28-pre4/arch_s390x_kernel_ebcdic_c_18_399.html   (2630 words)

Try your search on: Qwika (all wikis)

Factbites
  About us   |   Why use us?   |   Reviews   |   Press   |   Contact us  
Copyright © 2005-2007 www.factbites.com Usage implies agreement with terms.