Help with string functions

String.Replace method is what you seek.
VB.NET:
Dim str As String = "L:\VoicenetSQL\project\tampa\Politic\NGEV1\File.csv"
str = str.Replace("L:\", "[URL="file://ITITPAFS02/pds/"]\\ITITPAFS02\pds\[/URL]")
 
Back
Top