Chilkat HOME ASP Visual Basic VB.NET C# Visual C++ C MFC Delphi FoxPro Java Perl PHP Python Ruby SQL Server VBScript
|
Modify Characters Within a String You can use Mid$ to modify a substring within a string. MyString = "1234567890" startPos = 3 charCount = 4 Mid$(MyString,startPos,charCount) = "XXXX" Print MyString ' Prints "12XXXX7890"
|
Need a specific example? Send a request to support@chilkatsoft.com
© 2000-2008 Chilkat Software, Inc. All Rights Reserved.