Hi
This is a collection of methods that I have collected here in b4a, perhaps one can find them useful..
Code:
'Description: Return Left part of a string
'Tags: left method, string
Sub Left(Text As String, Length As Long)As String
If Length>Text.Length Then Length=Text.Length
Return Text.SubString2(0, Length)
End Sub
'Description: Return Right part of a string
'Tags: right method, string
Sub Right(Text As String, Length As Long) As String
If Length>Text.Length Then...
from B4X Community - Android, iOS, desktop, server and IoT programming tools http://ift.tt/1TL7rbP
via IFTTT
Aucun commentaire:
Enregistrer un commentaire