Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.programmer > #17531
| Path | csiph.com!newsfeed.hal-mli.net!feeder3.hal-mli.net!newsfeed.hal-mli.net!feeder1.hal-mli.net!news.ripco.com!news-out.news.tds.net!newsreading01.news.tds.net!53ab2750!not-for-mail |
|---|---|
| From | "qwertmonkey" <qwertmonkey@1:261/38.remove-k2r-this> |
| Subject | retriving escape unicode sequences from files ... |
| Message-ID | <5023FE3B.56480.calajapr@time.synchro.net> (permalink) |
| X-Comment-To | All |
| Newsgroups | comp.lang.java.programmer |
| X-FTN-AREA | COMP.LANG.JAVA.PROGRAMMER |
| X-FTN-MSGID | 1:261/38 b17d9700 |
| Content-Type | text/plain; charset=IBM437 |
| Content-Transfer-Encoding | 8bit |
| X-Gateway | time.synchro.net [Synchronet 3.16a-Win32 NewsLink 1.98] |
| Lines | 47 |
| Date | Thu, 09 Aug 2012 18:44:37 GMT |
| NNTP-Posting-Host | 69.21.70.65 |
| X-Complaints-To | news@tds.net |
| X-Trace | newsreading01.news.tds.net 1344537877 69.21.70.65 (Thu, 09 Aug 2012 13:44:37 CDT) |
| NNTP-Posting-Date | Thu, 09 Aug 2012 13:44:37 CDT |
| Organization | tds.net |
| Xref | csiph.com comp.lang.java.programmer:17531 |
Show key headers only | View raw
From: qwertmonkey@syberianoutpost.ru
my bad! Thank you.
~
Also question for you, what is the difference between
~
Pattern UKdRegX = Pattern.compile("\\\\u([0-9a-f]{4})",
Pattern.CASE_INSENSITIVE);
~
and
~
private final Pattern UKdRegX = Pattern.compile("\\\\u([0-9A-Fa-f]{4})");
~
~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
// __ "fix" ;-)
~
// __
private final String[] aHex2ByteTbl = new String[]{
"0", "1", "2", "3", "4", "5", "6", "7",
"8", "9", "a", "b", "c", "d", "e", "f"
};
~
// __ ctor
HMHexS2Int = new HashMap<String, Integer>();
for(int i = 0; (i < aHex2ByteTbl.length); ++i){
HMHexS2Int.put(aHex2ByteTbl[i], HMHexS2Int.size());
}
~
// __
String aRegXPtrn = "\\\\u([0-9A-Fa-f]{4})";
Pattern UKdRegX = Pattern.compile(aRegXPtrn);
Matcher UKdRegXMtx = UKdRegX.matcher(aFSU);
// __
while (UKdRegXMtx.find()){
aUKdS = aFSU.substring((UKdRegXMtx.start() + 2), UKdRegXMtx.end());
for(int j = 0; (j < iHexArL); ++j){ iHex[j] =
HMHexS2Int.get(aUKdS.substring(j, j + 1).toLowerCase()).intValue(); }// j [0,
iHexArL)
aBldr.append((char)(4096*iHex[0] + 256*iHex[1] + 16*iHex[2] + iHex[3]));
}
~
lbrtchx
--- BBBS/Li6 v4.10 Dada-1
* Origin: Prism bbs (1:261/38)
--- Synchronet 3.16a-Win32 NewsLink 1.98
Time Warp of the Future BBS - telnet://time.synchro.net:24
Back to comp.lang.java.programmer | Previous | Next — Next in thread | Find similar | Unroll thread
retriving escape unicode sequences from files ... "qwertmonkey" <qwertmonkey@1:261/38.remove-k2r-this> - 2012-08-09 18:44 +0000 Re: retriving escape unicode sequences from files ... "Arne Vajhøj" <arne.vajhøj@1:261/38.remove-k2r-this> - 2012-08-09 18:44 +0000
csiph-web