I wanna find an unregular string like;
<script type="text/javascript" src="………. </script>
and change it;
<null>
How can I
Any idea?
Regards
Find and replace string
Re: Find and replace string
<script type="text/javascript" src="xxxxxx </script>
xxxx changes in every file
xxxx changes in every file
Re: Find and replace string
you can try this:
<script.*</script>
for complex scripts you can try to set "dot matches newline"
<script.*</script>
for complex scripts you can try to set "dot matches newline"