venerdì, agosto 27, 2004

VB.NET & C# escape chars

Se scrivete in VB.NET è scomodo scrivere così:
Dim text As String = ControlChars.Tab & "A string indeted by a tab" _
& ControlChars.CrLf & "A string on a separate line"


Vi piacerebbe magari poter scrivere come in C#:
string text = "\tA string indented by a tab\nA string on a separate line";

Bhè, potete sempre usare le Regular Expressions:
' Ovviamente dovete avere il seguente Imports statement
' Imports System.Text.RegularExpressions

Dim text As String = Regex.Unescape("\tA string indeted by a tab\nA string on a separat" _
& "e line")





Nessun commento: