Chilkat
HOME
Android™
ASP
Visual Basic
VB.NET
C#
iOS (IPhone)
Objective-C
C++
C
MFC
Delphi
FoxPro
Java
Perl
PHP Extension
PHP ActiveX
Python
PowerShell
Ruby
SQL Server
VBScript
Modify Characters Within a StringYou 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"
|
© 2000-2012 Chilkat Software, Inc. All Rights Reserved.