Chilkat HOME ASP Visual Basic VB.NET C# Visual C++ C MFC Delphi FoxPro Java Perl PHP Python Ruby SQL Server VBScript
|
String Replacement This example shows how to do string replacement in Visual Basic. Dim s As String s = "Chilkat Software, Inc. : A software components company" ' Relace all occurances of a substring, case sensitive s = Replace(s, "software", "hardware") ' prints "Chilkat Software, Inc. : A Hardware Components Company" Print StrConv(s, vbProperCase) ' Replace all occurances, case-insensitive s = "Chilkat Software, Inc. : A software components company" s = Replace(s, "software", "hardware", 1, -1, vbTextCompare) ' prints "Chilkat Hardware, Inc. : A Hardware Components Company" Print StrConv(s, vbProperCase) ' Replace only the 1st occurance, case-insensitive startPos = 1 maxToReplace = 1 s = "Chilkat Software, Inc. : A software components company" s = Replace(s, "software", "hardware", startPos, maxToReplace, vbTextCompare) ' prints "Chilkat Hardware, Inc. : A Software Components Company" Print StrConv(s, vbProperCase)
|
Need a specific example? Send a request to support@chilkatsoft.com
© 2000-2008 Chilkat Software, Inc. All Rights Reserved.