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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to remove certain chracter from string

Status
Not open for further replies.

cancer2006

Programmer
Aug 25, 2006
45
US
using CRW8.5 and access97

I like to know if there is a function that will remove hyphen(-) from social security numbers. Thanks.
 
The Replace() function will do this. Look at the help files for full context on how to use this function.

Software Sales, Training, Implementation and Support for Macola, eSynergy, and Crystal Reports

"A fine is a tax for doing wrong. A tax is a fine for doing well.
" - unknown
 
Here is an example of the syntax you shoud use for your formula:

Replace({table.ssn},"-","")

~Brian
 
I solved that problem by the following code.
Thanks,

stringvar ssnumber;
ssnumber := Left({EInfo.ssn},3) + Mid( {EInfo.ssn},5,2) + Right({EInfo.ssn},4) ;
 
Why use the variable? It is not needed.

Dbreed's formula is perfect.


Software Sales, Training, Implementation and Support for Macola, eSynergy, and Crystal Reports

"A fine is a tax for doing wrong. A tax is a fine for doing well.
" - unknown
 
Either solution works, howeverdgillz appropriately points out that you do NOT need a variable.

I think that the replace if the most elegant.

However since you enjoy alternatives, you might also use:

join(split({table.field},"-"),"")

-k
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top