Re: converting ISO 8859-1 character set text to ASCII (128)charactet set

2001-06-21 Thread Antoine Leca
We have a specific requirment of converting Latin -1 character set ( iso 8859-1 ) text to ASCII charactet set ( a set of only 128 characters). Is there any special set of utilities available or service providers who can do that type of job. Look after recode (a GNU package). It performs the

converting ISO 8859-1 character set text to ASCII (128)charactet set

2001-06-20 Thread cls raj
We have a specific requirment of converting Latin -1 character set ( iso 8859-1 ) text to ASCII charactet set ( a set of only 128 characters). Is there any special set of utilities available or service providers who can do that type of job. It is kind of critical for my current project, I

RE: converting ISO 8859-1 character set text to ASCII (128)charactet set

2001-06-20 Thread Yves Arrouye
We have a specific requirment of converting Latin -1 character set ( iso 8859-1 ) text to ASCII charactet set ( a set of only 128 characters). Is there any special set of utilities available or service providers who can do that type of job. [I am assuming that your ascii table is

Re: converting ISO 8859-1 character set text to ASCII (128)charactet set

2001-06-20 Thread Kenneth Whistler
We have a specific requirment of converting Latin -1 character set ( iso 8859-1 ) text to ASCII charactet set ( a set of only 128 characters). Is there any special set of utilities available or service providers who can do that type of job. Well, if you only want exact character

Re: converting ISO 8859-1 character set text to ASCII (128)charactet set

2001-06-20 Thread Jim Melton
Well, the good news is that ASCII is a proper subset of Latin-1. By that, I mean that every ASCII character is also a Latin-1 character, with the exact same bit encoding in an 8-bit byte (an octet). Of course, ASCII is a 7-bit encoding (coded character set), but it is very frequently

Re: converting ISO 8859-1 character set text to ASCII (128)charactet set

2001-06-20 Thread Markus Scherer
cls raj wrote: We have a specific requirment of converting Latin -1 character set ( iso 8859-1 ) text to ASCII charactet set ( a set of only 128 characters). 8859-1 is a superset of ASCII (of US-ASCII, to be precise, but you seem to be using that). US-ASCII uses byte values 0..127 (7 bits),

RE: converting ISO 8859-1 character set text to ASCII (128)charactet set

2001-06-20 Thread Murray Sargent
If you need to roundtrip 8859-1 through ASCII, you need to use some kind of escape mechanism inside the ASCII to represent characters that have their high bit equal to one. A common simple escape is to use the backslash. So you could represent the codes as \'xx, where xx is the hexadecimal code.