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.
Hello, Does anyone have a little routine that performs replacing a character in a string based on position number which is a variable.(TABLE FILE). I have string "0000000000" and need to replace single 0 with 1 based on S_POS value (between 1-10).
Look into using substr within your own function. You could pass the source field and the position and return the actual string output. If you use this function several times then it would be well worth your time. Something like (pseudo code) -
FUNCTION REP_ZERO(srce_field, position)
src_length = LENGTH(srce_field);
REP_ZERO = SUBSTR(src_length, srce_field, 1, position - 1, position -1, 'A'||(position - 1)) || '1'
SUBSTR(src_length, srce_field, position + 1, src_length - position, 'A'||(position - 1)) ;
END
I am sure that someone like Alan or Francis will be along any minute now to flesh it out, but it would help you considerably to look at the help files and work it out.
T (in Nashville )
In FOCUS since 1986
WebFOCUS Server 8.2.01M, thru 8.2.07 on Windows Svr 2008 R2
WebFOCUS App Studio 8.2.06 standalone on Windows 10
Posts: 5694 | Location: United Kingdom | Registered: April 08, 2004
Here I am standing at the Focal Point booth in Cash Vegas using Kathleen's Id (I'm sure she won't mind the extra karma point ), ably supported by Prarie, Carol Dobson, FrankDutch and GamP.
We are not sure that STRREP would satisfy this requirement as the need is to target a particular position within the string and if you have all zeroes how would you be able to use STRREP? You would end up changing them all?
Jim, you may not be here, but your presence is sorely missed
Tony A
Posts: 391 | Location: New York | Registered: September 20, 2006