Search the web
Sign In
New User? Sign Up
elfdata
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 173 - 202 of 445   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
173
I've been thinking about this for a while, I decided I'm going to port ElfData to two platforms, properly. C++, and RB. I won't give up on RB, not at all, in...
Theodore H.Smith
boytheouk
Offline Send Email
Apr 7, 2007
6:29 pm
174
As some of you may know, I am working on an algorithm to do genetics with my ElfData plugin. It will be in my ElfDataFuzzy class. It will be like BLAST, but...
Theodore H.Smith
boytheouk
Offline Send Email
Apr 7, 2007
6:31 pm
175
Hmmm that's interesting. Once that's done I might have an excuse to spend some time on C++. Ronald Vogelaar http://www.rovosoft.com Theodore H.Smith wrote: ...
Ronald Vogelaar
enter@...
Send Email
Apr 7, 2007
8:22 pm
176
I'm considering altering how NextSibling and PrevSibling work. I'm considering making it move the parameter, and not the receiver. This will break any code...
Theodore H. Smith
boytheouk
Offline Send Email
Apr 7, 2007
8:41 pm
177
ElfData 4.92 is released. Download: http://elfdata.com/plugin/elfdata.zip Website: http://elfdata.com/plugin/ About: ElfData is a string processing plugin,...
Theodore H. Smith
boytheouk
Offline Send Email
Apr 11, 2007
2:52 pm
178
... Sorry, that's "all remaining known bugs fixed". I can't fix bugs I haven't come across yet. But I do have a very thorough test framework that tests every...
Theodore H. Smith
boytheouk
Offline Send Email
Apr 11, 2007
2:58 pm
179
Just one tiny bug fix for setting RingTree.NextSibling That's it. -- http://elfdata.com/plugin/ "String processing, done right"...
Theodore H. Smith
boytheouk
Offline Send Email
Apr 12, 2007
10:35 pm
180
Anyone know anything about detecting sub-strings in strings? If you want to reply off the RB list that's fine, but on my ElfData list is a good place to reply....
Theodore H. Smith
boytheouk
Offline Send Email
May 6, 2007
9:51 pm
181
... Mine's got RLE in the decompression format, also, without a separate RLE stage, it's in the main decompressor stage. It can repeat 16x with only 1 byte...
Theodore H. Smith
boytheouk
Offline Send Email
May 6, 2007
9:56 pm
182
Something in plain English would be good too. I hate academia-speak :)...
Theodore H. Smith
boytheouk
Offline Send Email
May 6, 2007
10:06 pm
183
Hi, I'm having huge trouble using a UTF8 string as a search pattern with RegEx and UTF8text. Below is the code I'm using. Either I'm doing something wrong or...
deniseaddy19
Offline Send Email
Jun 13, 2007
1:40 pm
184
Are you trying to count the number of times a character occurs, any character from a character set? If so, the solution should be easy. Let me know if that is...
Theodore H. Smith
boytheouk
Offline Send Email
Jun 13, 2007
1:52 pm
185
Sorry, to give a strict answer... No, ElfData does not do Regex. If you want Regex, use REALbasic ;) It's regex is slow, but not that bad. However, ElfData...
Theodore H. Smith
boytheouk
Offline Send Email
Jun 13, 2007
1:56 pm
186
Hi, No, I'm not trying to count characters but do a word count feature. i.e. "this is sample text with UTF8 characters in it EstáEstá." r.SearchPattern =...
deniseaddy19
Offline Send Email
Jun 13, 2007
2:13 pm
187
OK, I just emailed you a project that counts words, no matter what the separator is. As a bonus feature, there is the "WordMover" class, which can move through...
Theodore H. Smith
boytheouk
Offline Send Email
Jun 13, 2007
3:02 pm
188
Wow, that's fantastic. Thank you! It didn't work initially on RB 5.5.5 but I just commented out the line "Super.Constructor( nil, nil )" in WordMover. I...
deniseaddy19
Offline Send Email
Jun 13, 2007
3:43 pm
189
... Oh, you still use 5.5.5? Well, glad it works still! Will it be a problem... I think you'll able to get away with it... I don't think it should cause any...
Theodore H. Smith
boytheouk
Offline Send Email
Jun 13, 2007
3:51 pm
190
I do want to upgrade to RB 2007 but always get worried that a project that works great in 5.5.5 will just screw up due to new bugs in the new release, plugin...
deniseaddy19
Offline Send Email
Jun 13, 2007
4:08 pm
191
... Well, the cool thing about ElfData, is there is always an easy way to see if the plugin works in a newer RB, for yourself. Just open up the "ElfData Unit...
Theodore H. Smith
boytheouk
Offline Send Email
Jun 13, 2007
4:18 pm
192
Yes, it's a shame about the file size but I suppose the main incentive is the UB support. Thanks again for all your help and for your "magic" plugin! ... ...
deniseaddy19
Offline Send Email
Jun 14, 2007
12:13 pm
193
One last thing - the wordMover/countwords doesn't seem to recognize the UTF8 punctuation such as ' and " and " (which encloses a word). i.e. John's or "hello" ...
deniseaddy19
Offline Send Email
Jun 14, 2007
2:39 pm
194
... ElfDataCharSet has a problem with UTF8, yes. It basically is a byte- oriented class. MSR however can handle UTF-8, and can do some stuff similar to what ...
Theodore H. Smith
boytheouk
Offline Send Email
Jun 14, 2007
2:42 pm
195
Thanks. Much appreciated. ... recognize ... word). ... what...
deniseaddy19
Offline Send Email
Jun 14, 2007
9:36 pm
196
... I found a bug in my plugin while trying to make the UTF-8 version, unfortunately. I'll spend tomorrow fixing the bug as I can't stand bugs in my code. And...
Theodore H. Smith
boytheouk
Offline Send Email
Jun 14, 2007
10:25 pm
197
This version has all known bugs fixed. I fixed a bug with RingTree. No new features I can remember. Although there might be one I forgot. There are some extra...
Theodore H. Smith
boytheouk
Offline Send Email
Jun 24, 2007
4:51 pm
198
I also fixed a bug with MSR.Search. There's still no known bugs in this release :) which is a relief! -- http://elfdata.com/plugin/ "String processing, done...
Theodore H. Smith
boytheouk
Offline Send Email
Jun 24, 2007
4:55 pm
199
Oh, there is one new "feature" if you want to call it that. I made my plugin register for console safeness. This affects nothing except to enable auto-complete...
Theodore H. Smith
boytheouk
Offline Send Email
Jun 24, 2007
4:59 pm
200
Now, I know a lot of you will often be processing strings, in ElfData, as bytes. Now sometimes, you'll want to get a line position after you've processed the...
Theodore H. Smith
boytheouk
Offline Send Email
Jul 25, 2007
6:51 pm
201
rowFromFile = "Thank you for purchasing REALbasic" dim e, e2 as ElfData dim fs as FastString dim fi as ElfDataFields fi = new ElfDataFields( rowFromFile,...
artgabhart
Offline Send Email
Aug 15, 2007
9:06 am
202
Hi there, sorry your email doesn't say your name? ... Anyhow. If datasep is chrb(9), then that's a tab. That means it won't process spaces, only tabs. If you...
Theodore H. Smith
boytheouk
Offline Send Email
Aug 15, 2007
11:40 am
Messages 173 - 202 of 445   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help