In borland C++ Builder 3 there are the commands 'LEFT' 'RIGHT' and 'MID'
They supose to work like this:
LEFT("Spippo",3) = "Spi"
RIGHT("Spippo",2) = "po"
MID("Spippo",2,3) = "pip"
When I use them, it sais:
[C++Error] Unit2.cpp(48): Call to undefined function 'MID'.
I've include <strings.h> is there something else I have to include?
How can I convert a charter to is ANSII-code?
eg:
"a" = 97
"b" = 98
...
They supose to work like this:
LEFT("Spippo",3) = "Spi"
RIGHT("Spippo",2) = "po"
MID("Spippo",2,3) = "pip"
When I use them, it sais:
[C++Error] Unit2.cpp(48): Call to undefined function 'MID'.
I've include <strings.h> is there something else I have to include?
How can I convert a charter to is ANSII-code?
eg:
"a" = 97
"b" = 98
...