a small problem with String functions

  • Thread starter Thread starter Andy6
  • Start date Start date
A

Andy6

I am dealing with strings that contain text such as 'Box1,1' to 'Box30,14'
and I need to seperate out the numbers either side of the comma (,).
Can anyone help with string functions or code to do this and store the
numbers in integer variables.
Many thanks in advance. Andy.
 
Two questions:

Do all the strings have Box, the comma and two "numbers?"

What version of Access are you running?

--
There's ALWAYS more than one way to skin a cat!

Answers/posts based on Access 2000/2003

Message posted via AccessMonster.com
 
If the answer to my last question is Yes, and if you're running Access 2000
or later, xomething like this will do it:

Dim OriginalString, StrippedString As String

StrippedString = Replace(OriginalString, "box", "")
Me.FirstNumber = Left(StrippedString, InStr(StrippedString, ",") - 1)
Me.SecondNumber = Right(StrippedString, Len(StrippedString) - (InStr
(StrippedString, ",")))

Linq
 
Linq.
Many many thanks. your solution gave me all the components I needed to get
my head around my problem.
regards, Andy.
 
Glad you got it working!

Happy New Year to you and yours!

Linq.
 
Back
Top