How do I Trim first 4 Left 0 from string?

H

Hilary

Hi,
I am working in crystal reports and I have a string 13 characters long and I
would like to remove the first four left 0 from the string. Can you help? --
Hilary
 
K

Karl E. Peterson

Hilary said:
I am working in crystal reports and I have a string 13 characters
long and I would like to remove the first four left 0 from the
string. Can you help? -- Hilary

To rephrase, you'd like all the characters starting at the 5th position?

MyString = Mid$(MyString, 5)
 

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