Hi,
Is there anything wrong, or nothing wrong:
Dim a As String
a = "abcde"
Debug.print("---" & String.Format(a, "@@@") & "---")
Debug.print("---" & String.Format(a, "!@@@") & "---")
Debug.print("---" & String.Format(a, "@@@@@@") & "---")
Debug.print("---" & String.Format(a, "!@@@@@@") & "---")
I got the same tesult
---abcde---
---abcde---
---abcde---
---abcde---
Is there anything wrong, or nothing wrong:
Dim a As String
a = "abcde"
Debug.print("---" & String.Format(a, "@@@") & "---")
Debug.print("---" & String.Format(a, "!@@@") & "---")
Debug.print("---" & String.Format(a, "@@@@@@") & "---")
Debug.print("---" & String.Format(a, "!@@@@@@") & "---")
I got the same tesult
---abcde---
---abcde---
---abcde---
---abcde---