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>Evaluating Fields for Special Characters

Read-Only Read-Only Topic
Go
Search
Notify
Tools
<SOLVED>Evaluating Fields for Special Characters
 Login/Join
 
Gold member
posted
I have a field in this format A:TEST:MONDAY and I only want A:TEST to display on the report. How do I evaluate the field to not display everything from the second colon on? Thanks

This message has been edited. Last edited by: Tracie,


WebFocus 7703
Windows 7
Output format: HTML, Excel, PDF
 
Posts: 54 | Registered: May 07, 2008Report This Post
Guru
posted Hide Post
Look up GETTOK function.


WF 8.1.05 Windows
 
Posts: 333 | Location: Orlando, FL | Registered: October 17, 2006Report This Post
Platinum Member
posted Hide Post
Hi Tracie,

Here's an example using the CAR file.

T1_TXT - Your original field
T3_TXT - Your new field(Everything before the second Smiler

-*
DEFINE FILE CAR
T_KEY/I3 WITH MODEL = T_KEY + 1;
-*
T1_TXT/A200 = DECODE T_KEY (
1 'A:TEST:MONDAY'
2 'BB:TEST22:TUESDAY'
3 'CCC:TEST333:WEDNESDAY'
ELSE '**');
-*
T1_POS/I3 = POSIT(T1_TXT, 200, ':', 1, 'I3');
-*
T2_TXT/A200 = SUBSTR(200, T1_TXT, T1_POS+1, 200, 200, T2_TXT);
T2_POS/I3 = POSIT(T2_TXT, 200, ':', 1, 'I3');
-*
T3_LEN/I3 = T1_POS + T2_POS -1;
T3_TXT/A200 = SUBSTR(200, T1_TXT, 1, T3_LEN, 200, T3_TXT);
END
-*
TABLE FILE CAR
PRINT
T_KEY
-*
T1_TXT
T1_POS
-*
T2_TXT
T2_POS
-*
T3_LEN
T3_TXT
WHERE RECORDLIMIT EQ 3
END

~Jim


WebFocus 8.201M, Windows, App Studio
 
Posts: 227 | Location: Lincoln Nebraska | Registered: August 12, 2008Report This Post
Expert
posted Hide Post
Or, (check out) CONTAINS. As in WHERE Field CONTAINS ':TEST:'.
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
Expert
posted Hide Post
I think GETTOK, POSIT then SUBSTR will do the job.


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
Virtuoso
posted Hide Post
If you *always* need to get everything just before the second ":", then tokenizing your field by ":" (using GETTOK as Anatess and Waz mentioned) and capturing the first 2 tokens would give the result you need.

-SET &TKNDEL=':';
DEFINE FILE CAR
FLD/A15 WITH CAR = 'A:TEST:MONDAY';
NEWFLD/A40 = GETTOK(FLD, 15, 1, '&TKNDEL', 15, 'A15') || '&TKNDEL' || 
             GETTOK(FLD, 15, 2, '&TKNDEL', 15, 'A15');
END
TABLE FILE CAR
PRINT CAR AND FLD AND NEWFLD
WHERE RECORDLIMIT EQ 1
END



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
Thank you for the information. I am all set.


WebFocus 7703
Windows 7
Output format: HTML, Excel, PDF
 
Posts: 54 | Registered: May 07, 2008Report 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>Evaluating Fields for Special Characters

Copyright © 1996-2020 Information Builders