Extract one string from another

  • Thread starter Thread starter Leslie Isaacs
  • Start date Start date
L

Leslie Isaacs

Hello

Is it possible to extract one string from another - so for e.g. if stringA =
"This is a string" and stringB = "is a" then the expression to extract
stingB from StringA should return "This string".

I would be very grateful if anyone could help me with this.

Many thanks
Leslie Isaacs
 
Use Replace function in later versions of Access.

In earlier versions, 97 and some of 2000, you'll need to write a VBA
function or use instr, len, mid functions to do this.
 

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

Back
Top