|
|
|
|
||||||
![]() |
|
|
LinkBack | Outils de la discussion |
|
|
#1 |
|
Messages: n/a
Hébergeur: |
I have files encoded in Shift_JIS, that mainly contains JSP source
code (ascii), but sometimes also contains strings that are non-ascii (japanese words). So, I would like to know if there is a way with ruby to : - detect files containing something else than ascii, - extract the non-ascii strings thare were found. Thank you ! |
|
|
|
#2 |
|
Messages: n/a
Hébergeur: |
Any character that has the top bit clear is potentially valid ascii,
though if you take away the non printing characters there's an additional exlusion set. According to http://en.wikipedia.org/wiki/Shift-JIS Testing for character codes with the top bit set should indicate either katakana or double byte characters. See the chart there for which ranges are double byte, which are single and which are not legal. RF killy971 wrote: > I have files encoded in Shift_JIS, that mainly contains JSP source > code (ascii), but sometimes also contains strings that are non-ascii > (japanese words). > > So, I would like to know if there is a way with ruby to : > - detect files containing something else than ascii, > - extract the non-ascii strings thare were found. > > Thank you ! -- Ron Fox NSCL Michigan State University East Lansing, MI 48824-1321 |
|
![]() |
| Outils de la discussion | |
|
|