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 gkittelson 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 strip Apostrophe from DATA

Status
Not open for further replies.

bmann

Programmer
Oct 8, 2002
128
US
How do I strip Apostrophe from DATA.

Example:

O'NEIL

I appreciate your help.
 
strName = Replace(strName , "'", "")

"Have a great day today and a better day tomorrow!
 
Hi
Maybe
MyStr="O'Neill"
Replace(MyStr,"'","")
 
If the problem is having single quotes in SQL's string literal:
strSQL = strSQL & "WHERE somefield=[tt]'"[/tt] & Replace(somevar, [tt]"'", "''"[/tt]) & [tt]"'"[/tt]

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top