Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I extract portions from a string in Crystal Reports 8? 1

Status
Not open for further replies.

tsamara

Programmer
Oct 21, 2004
1
US
I need to extract all alpha characters from a string that would look like this:
*MLI**NEF*,*MLR*,*MET*
End result should be: MLINEFMLRMET
Can someone please help me?
Thanks
 
you would have to create two formula's to achieve this -

formula A - Replace ('*MLI**NEF*,*MLR*,*MET*','*','')
the result would be MLINEF,MLR,MET

formula B - Replace ({@formula A},',',''
the result will give you MLINEFMLRMET

Hope this helps
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top