B4R Question how can merge two string to another ?

bdunkleysmith

Active Member
Licensed User
Longtime User
Why can't you use JoinStrings?

Based on my experience in using JoinStrings in B4R this would achieve what you require:

B4X:
Dim str1 as string = "123"
Dim str2 as string = "456"
Dim str3 as string
str3 = JoinStrings (Array As String(str1, str2))
 
Last edited:
Upvote 0
Top