The picker returns the selected text with chr(13) appended.
Took me a while to understand why my font change never worked.
After trimming the last character, everything is alright. It would be better to fix the issue, but in the meantime:
Took me a while to understand why my font change never worked.
After trimming the last character, everything is alright. It would be better to fix the issue, but in the meantime:
B4X:
Sub Trim(Str As String) As String
If Str.Length > 0 Then
Return Str.SubString2(0, Str.Length-1)
End If
End Sub