|
On Fri, 20 Dec 2013 11:12:00 -0800 CRPence wrote:
Or for an attempt to display data that is apparent BiDirectional
(BIDI) data; i.e. reformat the data currently stored as
left-to-right data to be presented\read as right-to-left data,
while leaving any embedded /numeric/ data in-tact. But the
requirements would be much more complicated than as-stated\alluded.
Even if not so complex, there is still way too little information
to make a good suggestion. I have a function that does exactly what
both of those _very simple examples_ imply would be the expected
result, but I would be hesitant to share that as a possible
solution without knowing what are the requirements; i.e.
overly-simplified examples are not requirements.
Yes it is a very peculiar local (Bidi) situation with CCSID 424
(Hebrew)
Hebrew is read Right to left so description text fields are
populated Right to left starting at the right-most pos (424 is I
believe Visual Hebrew). Numbers however, we read left to right.
English letters Address example:
MAIN ST12 is stored as
|_|*1*|*2*|*T*|*S*|_|*N*|*I*|*A*|*M*|
SIDE ST8 is stored as
|_|*_*|*8*|*T*|*S*|_|*E*|*D*|*I*|*S*|
Now, when displaying/printing the address we use the raw data but in
order to sort correctly we need to Reverse the data otherwise SIDE
ST8 will precede MAIN ST12 due to "SIDE ST8" 's shorter length.
Select CustNo, CustName, CustAddress
from CustMast
order by Reverse(CustAddress)
Simply flipping the data will get you MAIN ST21 instead of MAIN ST12
So numbers (and English words as well) should remain intact.
Hope this clears the issue
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 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.