I'm working with RFID Reader
, and it became with a software demo that has some different types of reading a rfid tag
, like:
Hexadecimal
,Decimal
,Ascii
, Abatrack
etc...
The Abatrack
documentation says:
Shows the CardID converted to decimal with 14 digits
.
I have a CardID = 01048CABFB
then with this protocol it shows me 00004371295227
where the first four zeroes were added by the software
It converts a string
with letters and numbers to decimal
with only numbers. how may I do that ?
I've found THIS , but it's in VB
.