Multi Tabstops

Hi,

To add a Tabstop into a String, i use use this:

Dim s As String = "Blabla" + &u0009 + "more blabla"

Is there a more comfortable way to add multiple Tabstops to the String 1…*? It’s not so cool repeat it like this:

Dim s As String = "Blabla" + &u0009 + &u0009 + &u0009 + &u0009 +"more blabla"

Maybe like 4* + &u0009, which not works?

Greetings

dim s as string=replaceall("Bla^^^moreBlaBla","^",chrb(9))

Thats quite simple and effective, thanks Dave :smiley: