Remove text string

E

EllenM

Hello,
I've like to remove the following string from a field:
#~lrd/cfr25-32.html#
Can that be done with an update query? Does the # need some kind of escape
character?

Thanks in advance,
Ellen
 
F

fredg

Hello,
I've like to remove the following string from a field:
#~lrd/cfr25-32.html#
Can that be done with an update query? Does the # need some kind of escape
character?

Thanks in advance,
Ellen

You wish to remove that string from a larger string?
Back up your table data first.
Then run an Update query.

Update YourTable Set YourTable.FieldName =
Replace([FieldName],"#~lrd/cfr25-32.html#","")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top