Replaces a string (oldw) with desired new string (neww)
Replaces a string (oldw) with desired new string (neww)
Rate Replaces a string (oldw) with desired new string (neww)
(1(1 Vote))
STRL = InStr(STRX, oldw)
Do Until STRL = 0
Mid(STRX, STRL, 1) = neww
STRL = InStr(STRX, oldw)
Loop
End Function
STRX = 'source where to replace string such as text1.text
'oldw = original string
'neww = what will replace oldw (original string)
Call checkchar(oldw, neww)
Replaces a string (oldw) with desired new string (neww) Comments
No comments yet — be the first to post one!
Post a Comment