If you look at match.c in the SB source, you'll see that this is not a trivial thing to implement from scratch. There's a lot of parsing going on in that module.
Quote from: AIRIf you look at match.c in the SB source, you'll see that this is not a trivial thing to implement from scratch. There's a lot of parsing going on in that module.
That's good to know. My LIKEX and JOKERS will be all that more impressive. :-*
LIKEX and JOKERS Preview.
LIKEX
This is syntax compatible with SB native LIKE but allows for an option parameter to indicate the number of occurances of the passed pattern string is to be found. * means all occurances. LIKEX will return the number of occurances and undef if no matches are found of the pattern string being passed.
JOKERS
JOKER is being expanded to not only return the data represented by the * placeholder but the following information as well.
- Length of the referenced JOKERS index returned data.
- Starting position in the match string for JOKERS index returned string being referenced.
There are no extra points for finishing first.
Says the guy who's gonna finish second...
I'm not good enough with regex to know its limitations.
My approach is much different. You may end up last to release a working LIKE based on this latest news. :o
I will post what I have soon that will not have support for multiple occurrences and code for failure if a match isn't found. That may change depending if my concept pans out or not.
LIKE Tips
- For every JOKER there is a pair of patterns. (except the first and last)
- Pattern strings always start and end with a JOKER. Normally the associated data for these are ignored.
A rudimentary BACON version, just to show it's capable, but I'm not finishing this....
If my SB LIKEX and JOKERS direction works out, this challenge may turn out to be relatively simple.
When this challenge is over, LIKEX is joining T (Tools) extension module along with the array sort I did in BASIC.
EXTRACT
remove or take out, especially by effort or force.
Anyway, I was tired of looking at C++, so I decided to play around with the Bacon version I submitted earlier.
One of the things this does, which I don't know if you've considered, is return the number of matches as an integer.
LIKEX will return the number of occurances and undef if no matches are found of the pattern string being passed.
Maybe the next challenge could be SPLITA. :)
I think I should be effective with regex before trying another cryptic tool like 8th.
If I recall, the SB "RE" module is posix-based, meaning it uses the posix syntax, which is an entirely different way of doing stuff.
Is there anyone besides me willing to post a working EXTRACT / MATCH submission for this code challenge?
I think your start positions are off by one. Do Python strings start at zero?
AIR,
This may or may not be of interest to you.
https://winpython.github.io/