|
On Wed, 31-Aug-2016 at 14:12, (WalzCraft) Jerry Forss wrote:
On 31-Aug-2016 12:54 -0600, MichaelQuigley wrote:
On Wed 31 Aug 2016 10:41:44 -0400 John Yeung wrote:
Why can't he use the "big character string" approach with
POSSTR or LOCATE as Glenn suggested?
(And please note that I'm not asking why it's not the *best*
way; I'm merely asking why it's not *a* way.)
It could be "a" way, but you would have to be careful how your
"big character string" is formatted. It might not work because
POSSTR and LOCATE will find the position of any occurrence of a
string, not necessarily the key value for which you're looking.
e.g. If you're searching the following string of three character
values
'ABCDEFGHI' i.e., values of 'ABC','DEF', and 'GHI'
If you test for 'CDE', POSSTR and/or LOCATE will say it's there
and it is--in position 3. But it isn't really one of the values
you intended. Now if your "big character string" is delimited
(using any delimiter -- it doesn't really matter what) it would
work. e.g. 'ABC,DEF|GHI'.
This would be an issue for what I am doing.
Some of the values will be MLMD, MLDM and MLD.
So scanning for a value of MLD may give a false positive.
It wouldn't, if you took the appropriate precautions for the format
of the data.
The example you started with was minimal, so I couldn't tell if it
was space-delimited or fixed-width.
If fixed-width, then you would want to divide the result of your
scan by the element size, and you only have a match if the remainder
is 1.
If delimited (by anything, including spaces), then you would first of
all want to ensure you have a delimiter at the beginning of every
field (so one extra one at the beginning) or at the end (so one extra
one at the end). Then include the delimiter in your scan.
So, scanning is still doable, but how convenient it is depends on how
the data in the big string is formatted.
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2025 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.