jinyistudio Well-Known Member Licensed User Longtime User Mar 18, 2016 #1 Hi How to convert a int to string ? 10 to "10" ,99 to "99",,,
Erel B4X founder Staff member Licensed User Longtime User Mar 18, 2016 #2 It is converted automatically. B4X: Dim s As String = 10 If you want to control the number of fraction digits then you should use NumberFormat. Upvote 0
It is converted automatically. B4X: Dim s As String = 10 If you want to control the number of fraction digits then you should use NumberFormat.
eurojam Well-Known Member Licensed User Longtime User Mar 18, 2016 #3 B4X: Dim i As Int = 10 Dim c As String c = Chr(34) & i & Chr(34) 'if you want to have it with double quotes Log (c) 'else only c = i Log(c) Upvote 0
B4X: Dim i As Int = 10 Dim c As String c = Chr(34) & i & Chr(34) 'if you want to have it with double quotes Log (c) 'else only c = i Log(c)