Is there a way to change a string to an integer and an integer to a string.
e.g. VB:
php:
I need to use this for my library to send POST data.
This is only String-String, as I need String - Integer. (For me, it's much easier to send POST data with Java)
So it there a way to change an integer into a string? (Int -> String)
XverhelstX
e.g. VB:
B4X:
Cint ("10")
php:
B4X:
<?php
$str = "10";
$num = (int)$str;
?>
I need to use this for my library to send POST data.
B4X:
new BasicNameValuePair("srcY",src_y));
This is only String-String, as I need String - Integer. (For me, it's much easier to send POST data with Java)
So it there a way to change an integer into a string? (Int -> String)
XverhelstX
Last edited: