B
Bill H
I have a perl program that reads in text files and creates web pages
using the content of the text files. I now have to include text in
Russian in these text files so I need to save them as unicode. The
problem that arises is that my perl program can no longer read the
files due to the fact that all the text is in unicode, not just the
russian parts. Is there a way fixing the text so that only the unicode
parts are in unicode and the rest are in straight text.
Here is an example of what is bering read in:
QUESTIONS1=1. Я предпочитаю делать что-либо в
группе
QUESTIONS2=2. I love learning new skills
QUESTIONS3=3. My word is my bond
QUESTIONS4=4. I like being the boss
I looked at the source of the unicode text and a null character (0) is
inserted before every non-unicode letter, is there a way of removing
these nulls?
Bill H
using the content of the text files. I now have to include text in
Russian in these text files so I need to save them as unicode. The
problem that arises is that my perl program can no longer read the
files due to the fact that all the text is in unicode, not just the
russian parts. Is there a way fixing the text so that only the unicode
parts are in unicode and the rest are in straight text.
Here is an example of what is bering read in:
QUESTIONS1=1. Я предпочитаю делать что-либо в
группе
QUESTIONS2=2. I love learning new skills
QUESTIONS3=3. My word is my bond
QUESTIONS4=4. I like being the boss
I looked at the source of the unicode text and a null character (0) is
inserted before every non-unicode letter, is there a way of removing
these nulls?
Bill H