Is there as string-function that works like the localizeParams-Example:
or in VB.NET:
which returns: "Hello guys, my name is Thomas"
(could not adapt smart string literal to my issue)
B4X:
MyString = anyfunction("Hello {1}, my name is {2}", Array as string("guys","Thomas"))
B4X:
Dim name As String = String.Format("Hello {0}, my name is {1}", "guys", "Thomas")
(could not adapt smart string literal to my issue)