how to convert integer into string in android Ask Question
By       29-Apr-2025    1

how to convert integer into string and string into interger in android 

Solutions


Nawab

You can covvert it as
int pos=11;
string value=Integer.toString(pos)

for string to interget

string value="123"

int a=Integer.parseInt(value);

10037
Copyright Future Minutes © 2015- 2025 All Rights Reserved.   Terms of Service  |   Privacy Policy |  Contact US|  Pages|  Whats new?
Update on: Dec 20 2023 05:10 PM