Toggle navigation
Categories
Discussions
Activity
Best Of...
Sign In
Home
›
AMX Forum
›
NetLinx Studio
Options
Mute
Getting numeric string from buffer
bartliew
Junior Member
July 2011
in
NetLinx Studio
if the buffer contains <number in string>$0D, how to extract the number in string?
0
·
Share on Facebook
Share on Twitter
Comments
ProgressiveCode
Junior Member
July 2011
bartliew
wrote:
»
if the buffer contains <number in string>$0D, how to extract the number in string?
char Buffer[200]
integer Value
Value = atoi(Buffer)
type atoi in studio editor. highlight atoi with the mouse and hit F1 for more info. this is probably what you are asking for.
0
·
Share on Facebook
Share on Twitter
bartliew
Junior Member
July 2011
Thanks for the help! :-) Oh...How come I didn't realize of this!
0
·
Share on Facebook
Share on Twitter
Sign In
or
Register
to comment.
Comments
char Buffer[200]
integer Value
Value = atoi(Buffer)
type atoi in studio editor. highlight atoi with the mouse and hit F1 for more info. this is probably what you are asking for.