Toggle navigation
Categories
Discussions
HARMAN Pro
Home
AKG
AMX
BSS
Crown
dbx
JBL Professional
Lexicon
Soundcraft
Sign In
Home
›
AMX User Forum
›
NetLinx Studio
Getting numeric string from buffer
bartliew
Posts:
6
July 2011
in
NetLinx Studio
if the buffer contains <number in string>$0D, how to extract the number in string?
0
Comments
ProgressiveCode
Posts:
64
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
bartliew
Posts:
6
July 2011
Thanks for the help! :-) Oh...How come I didn't realize of this!
0
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.