Gareth Cook

MrPLC Member
  • Content count

    2
  • Joined

  • Last visited

Community Reputation

0 Neutral

About Gareth Cook

  • Rank
    Hi, I am New!

Profile Information

  • Country Australia
  1. Crimson 3 Timestamp String

    Hi jazzplayermark. I want to be able to parse a text string. The sting has data fields containing numbers or text and may have one of the following formats "%s %d" "%s %s" I am using the Crimson Find() functions  to find the location of the space character and then splitting the string into two substrings         index = Find(message,32,0); // find position of space         tok1 = Left(message, index);         tok2 = Right(message, Len(message)-index-1);   I'd like to use  TextToInt to convert tok2 to an Int if it is an Int but need to test first whether it is a number or a string Any suggestions would be appreciated
  2. Crimson 3 Timestamp String

    Hi Ken. The Crimson 3.0 function library referred to in this thread does not seem to be available on line. Any idea where i can get a copy?