Hi Ronald, it does indeed. Thank you very much for your help! I wonder if this group could help me in another issue. Now that we have a ciphertext, earlier it...
As a follow-up to my earlier message on the grouping function: By studying Ronald's kind example and ElfData docs, I wrote the following: Protected Function...
You mean something like this: dim e as ElfData="itisaveryrainydaytodayindeedijustwanttowatchtelly" j=e.Length For i=0 To j Step 5 fs.AppendSectElfData e, i, 5 ...
Ronald Vogelaar
enter@...
Oct 1, 2006 5:44 pm
71
Jari, Yeah, the method I provided was bitbased, not character based. You'll end up scanning the UTF8 again (see earlier example, or any of Theo's other ...
Ronald Vogelaar
enter@...
Oct 1, 2006 7:26 pm
72
You really should have a look at the scanning chars chapter of the pligin's Technical Ref ( http://elfdata.com/plugin/technicalref/ElfDataMCat12.html ). I use...
Ronald Vogelaar
enter@...
Oct 1, 2006 7:52 pm
73
... Aha, I typed in the wrong number, sorry! Function ReverseUTF8(extends e as ElfData) As ElfData #pragma disableAutoWaitCursor //SpeedUpPragmas #pragma...
Also... I didn't really want to say this before, because I think of it as "the wrong approach", as it's not fully Unicode, but I get a feeling that this is...
... Stupid example, sorry!!! most of those letter aren't latin-1!! Try this: dim e as ElfData e = "żd" e = e.ConvertTo(0,true) // 0 means latin-1...
Hi Theodore, and thanks for your replies! Your renewed ReverseUTF8 function works flawlessly. Also I appreciate very much your explanations of Unicode....
As a sequal to my earlier post today, I seem to be unable to use a number of functions from the ElfData plugin. The missing functions I just discovered were:...
Silly me. I read the examples somewhat carelessly. It's late, I guess ... Scan_UTF8ToUCS2 need some proofreading as well :) Finally I could produce the code...
It doesn't need to eb that complicated, seriously. Once you start getting into the scanning functions you know you've probably gone too far, especially for a...
... OK, I think you should use .ScanNextUTF8 like I suggested. .ScanIterateUTF8... well this one was a bad technical ref of mine, sorry :( OK, there are a few...
... Bad tech ref is my idea. I probably updated the function names and forgot to update the docs. Please tell me where you found these? Don't worry about those...
Theodore, Thanks again for your code examples which were really of great help. Below you will see the working codes. The first one is for splitting a sequence...
Jari, just to let you know, I believe that these days, people will hide Unicode data in ways that do not conserve Unicode correctness, as long as they can...
This upgrade has been giving me hell but I've started working every spare moment I can get on this update. I had a chance to improve the unit tests a little....
The linux bug is fixed now. Pretty obvious what the problem was. I also improved the linker unused code-stripping settings resulting in a smaller linux plugin....
I just gotta fix up the documentation, before making a release!! I made some changes to function names and all of these must be updated. Also I'll be improving...
Don't announce this release anyone on the RB lists please. Wait till I fix my stupid documentation. This is just a release for those who are desperate for a UB...
Only, the documentation isn't :( Sory about that people. I've updated all the tests though, and the examples all compile now with the new plugin. The Fuzzy.rb...
Hi everyone, After much frustration, the ElfData plugin 4.75 is out! This version compiles for UB, Win32, Carbon and Linux. It has been fully tested with RB...
Hi Theo, Did the ElfDataTokenHandler actually work? I just found I had tried to use it once, but had commented out the code. Now that I needed it again I...
Ronald Vogelaar
enter@...
Oct 11, 2006 7:08 am
92
I'm finding that even your example code (from the Technical Ref.) doesn't work.... Would appreciate a solution very much! Ronald Vogelaar ...
Ronald Vogelaar
enter@...
Oct 11, 2006 7:26 am
93
Never mind, I found it out myself. Ronald Vogelaar http://www.rovosoft.com ... From: Ronald Vogelaar To: elfdata@yahoogroups.com Sent: Wednesday, October 11,...
Ronald Vogelaar
enter@...
Oct 12, 2006 10:25 am
94
I'm working more on revamping my fuzzy algorithm. I've had this dream of getting it doing fuzzy smith-waterman searches for 1.5 years or so now. How time flies...
hello just bought this plugin couple days ago, right now to deal with XML honestly i'm having hardtime figuring how Elfdata and parser works. might have some...
I was wondering as I didn't see it mlentioned anywhere, but xml rb plug is pretty new, how's the speed of XML RB plugin vs Elfdata for doing XML stuff like the...
Hi dazz, My TinyXML.rb project is faster than RB's XML parser, but the speed varies depending on the amount of text in the XML. I prefer my TinyXML simply...