davepamn Active Member Licensed User Longtime User Dec 15, 2014 #1 Dim sf As StringFunctions I need to use the stringsfunctions trim function
davepamn Active Member Licensed User Longtime User Dec 15, 2014 #2 can I use the B4A stringsfunction library in IOS without any code conversion StringsFunction.jar StringsFunction.xml Does b4i have the equivalent function to sf.trim Upvote 0
can I use the B4A stringsfunction library in IOS without any code conversion StringsFunction.jar StringsFunction.xml Does b4i have the equivalent function to sf.trim
John Woodsmall Active Member Licensed User Longtime User Jan 2, 2015 #5 Can I use the B4A stringsfunction library in IOs like: sf.Split like:sf.mid like sf.Val will this be converted so the programming (alot of it) can be moved over? Upvote 0
Can I use the B4A stringsfunction library in IOs like: sf.Split like:sf.mid like sf.Val will this be converted so the programming (alot of it) can be moved over?
Erel B4X founder Staff member Licensed User Longtime User Jan 4, 2015 #6 Check Regex.Split and String.Substring / String.Substring2. About val: B4X: Sub val(s As String) As Double If IsNumber(s) Then Return s Return 0 End sub Upvote 0
Check Regex.Split and String.Substring / String.Substring2. About val: B4X: Sub val(s As String) As Double If IsNumber(s) Then Return s Return 0 End sub