How to replace the value of Img src [modified]
-
I want to replace the value of src attribute of html source code. for example the html source code is
and i want to replace the folder path ("script" or anything) to C:\myfolder\ How to replace this Thanks in advance modified on Monday, February 9, 2009 11:33 PM
-
I want to replace the value of src attribute of html source code. for example the html source code is
and i want to replace the folder path ("script" or anything) to C:\myfolder\ How to replace this Thanks in advance modified on Monday, February 9, 2009 11:33 PM
the replace method of the string class will work fine for that, or you could use regex if need be.
Christian Graus Driven to the arms of OSX by Vista.
-
the replace method of the string class will work fine for that, or you could use regex if need be.
Christian Graus Driven to the arms of OSX by Vista.
Could you give me some example to do this using regular expression? thanks