Focal Point Banner


As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.

Join the TIBCO Community
TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.

  • From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
  • Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
  • Request access to the private WebFOCUS User Group (login required) to network with fellow members.

Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] pulling the righmost character from a string

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[SOLVED] pulling the righmost character from a string
 Login/Join
 
Gold member
posted
How do i get the rightmost character from a variable length string? I know how to get the leftmost character but not the rightmost character. Any ideas?

This message has been edited. Last edited by: Kerry,
 
Posts: 67 | Location: Marceline, Missouri | Registered: August 09, 2006Report This Post
Virtuoso
posted Hide Post
Well, the standard algorithm is to determine the length of the string and then obtain a 1-character sub-string beginning at that position.

See:
DEFINE FILE CAR
CARV/A30V = CAR;
CARV_LEN/I4 = ARGLEN(LENV(CARV, CARV_LEN), CARV, CARV_LEN);
CARV_LAST_CHAR/A1 = SUBSTV(CARV_LEN, CARV, CARV_LEN, 1, CARV_LAST_CHAR)
END
TABLE FILE CAR
PRINT CAR
      CARV
      CARV_LAST_CHAR
END

quote:
from a variable length string

CARV is just an AnV representation of CAR to simulate your case.

Hope that helps!



Prod/Dev: WF Server 8008/Win 2008 - WF Client 8008/Win 2008 - Dev. Studio: 8008/Windows 7 - DBMS: Oracle 11g Rel 2
Test: Dev. Studio 8008 /Windows 7 (Local) Output:HTML, EXL2K.
 
Posts: 1533 | Registered: August 12, 2005Report This Post
Gold member
posted Hide Post
I will try that and see how that works for me, it looks like it should! Thanks!


Jen
WF7.1.4
Win/nt/win2003
HTML/PDF/Excel2000
 
Posts: 67 | Location: Marceline, Missouri | Registered: August 09, 2006Report This Post
Platinum Member
posted Hide Post
I am thinking that someone give us a REVERSE(REVERSE( function in previous? which would give you your need easy.

Search link not working I canot find post for you - I am being sorry for that.

Kofi


Client Server 8.1.05: Apache; Tomcat;Windows Server 2012
Reporting Server 8.1.05; Oracle; MS SQL; Windows Server 2012
 
Posts: 106 | Registered: April 06, 2009Report This Post
Gold member
posted Hide Post
I searched for the reverse function and found it, however the code njsden gave me worked like a champ! Thanks both of you!


Jen
WF7.1.4
Win/nt/win2003
HTML/PDF/Excel2000
 
Posts: 67 | Location: Marceline, Missouri | Registered: August 09, 2006Report This Post
Platinum Member
posted Hide Post
I am being happy now, I remember I do copy of function for library - here be it -

DEFINE FUNCTION RIGHT(SOURCE/A999, CHARS/I3, X_FMT/A4)
  C_LEN/I3     = ARGLEN(999, SOURCE, 'I3');
  C_FMT/A4     = 'A' || EDIT(C_LEN);
  RIGHT/A999V  = REVERSE(CHARS,REVERSE(C_LEN,SOURCE,C_FMT),X_FMT);
END
TABLE FILE CAR
SUM COMPUTE LAST_TWO/A2 = RIGHT(COUNTRY, 2, 'A2');
   BY COUNTRY
END
TABLE FILE GGSALES
SUM COMPUTE CARDINAL/A4 = RIGHT(REGION, 4, 'A4');
   BY REGION
END
The someone be Tony A, I remember now Smiler Search not work still Frowner

Kofi


Client Server 8.1.05: Apache; Tomcat;Windows Server 2012
Reporting Server 8.1.05; Oracle; MS SQL; Windows Server 2012
 
Posts: 106 | Registered: April 06, 2009Report This Post
Gold member
posted Hide Post
I tried that and YES that works too, so we now have 2 choices of how to do it! LOL Thanks Guys!


Jen
WF7.1.4
Win/nt/win2003
HTML/PDF/Excel2000
 
Posts: 67 | Location: Marceline, Missouri | Registered: August 09, 2006Report This Post
Expert
posted Hide Post
Always check the Functions Manual, you will be surprised what you find.

http://documentation.informati...x.htm?url=opener.htm


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [SOLVED] pulling the righmost character from a string

Copyright © 1996-2020 Information Builders