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

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 180 - 209 of 444   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
203
Sorry, I mixed two functions up. I mixed up IsInteger and IsNumeric. IsInteger is an ElfData function, so should be used on ElfData. Try this example: This is...
Theodore H. Smith
boytheouk
Offline Send Email
Aug 15, 2007
11:44 am
204
Thanks I'll play with the code some more. Also I figured out after I posted that I used the wrong property. I should have used datasep2 instead of just...
artgabhart
Offline Send Email
Aug 15, 2007
2:23 pm
205
Hi people, It seems ElfData needs a minor tweak to get it working. I've uploaded a new ElfData plugin to http://www.elfdata.com/plugin/ elfdata.zip I've...
Theodore H. Smith
boytheouk
Offline Send Email
Sep 11, 2007
12:06 am
206
Hi, I've been using your plugin for a while on Windows and it works fine but the same project with ElfData built for the Mac PPC (on Windows or Mac Intel) has...
danbronzite
Offline Send Email
Sep 12, 2007
3:45 pm
207
I'll look into this. Thanks. ... -- http://elfdata.com/plugin/ "String processing, done right"...
Theodore H. Smith
boytheouk
Offline Send Email
Sep 12, 2007
11:09 pm
208
Hi dan, by "old" or "new", what do you mean? What version of ElfData is old and what version is new? Just asking, so I can figure this out myself. ... -- ...
Theodore H. Smith
boytheouk
Offline Send Email
Sep 12, 2007
11:14 pm
209
Hi, Thanks for looking into this. Old is the June version, new is the latest one you've just posted. Let me know if you need any more help or testing. Dan ... ...
danbronzite
Offline Send Email
Sep 13, 2007
12:05 am
Messages 180 - 209 of 444   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