Hello friends
I want to know how it is possible to fill a string type variable with asterisks, in VB.Net I do it with this code:
It is shown for the variable MyString: **** Hello and for the variable MyString1: Hello *****
You can do this yourself using B4A
Thank you so much.
I want to know how it is possible to fill a string type variable with asterisks, in VB.Net I do it with this code:
B4X:
Dim Pass As String = "Hello"
Dim MyString As String = Pass.PadLeft (10, "*")
Dim MyString1 As String = Pass.PadRight (10, "*")
It is shown for the variable MyString: **** Hello and for the variable MyString1: Hello *****
You can do this yourself using B4A
Thank you so much.