S
sakitah
Hello Everyone,
Here's the problem: I have a string that I break down into 3 other
strings as such:
string1 = "001-202-1234567"
and parsing it into:
string2 = "001";
string3 = "202";
string4 = "1234567";
I want to manipulate these as numbers. I used the append function for
strings to fill the new strings from the original string. Sadly, I
cant append from the original string into an integer, so how can I do
it?
Thank You
Sakitah
Reply
Here's the problem: I have a string that I break down into 3 other
strings as such:
string1 = "001-202-1234567"
and parsing it into:
string2 = "001";
string3 = "202";
string4 = "1234567";
I want to manipulate these as numbers. I used the append function for
strings to fill the new strings from the original string. Sadly, I
cant append from the original string into an integer, so how can I do
it?
Thank You
Sakitah
Reply