ASP Replace in HTML
| Script version: | 1.0 |
| Language: | ASP |
| Rating: |
7 (1 votes cast) |
| Category: | Strings |
| Description: | This function is designed to replace text in HTML strings so that only the non HTML code is replaced. If the searched for phrase is found in the body of the HTML, then the function will firstly check that the phrase is not located inside opening and closing html delimeters, and then secondly will check to make sure that the text is not withing <a> and </a> tags. This means you can replace the text with a glossary link or popup window without affecting the HTML code or the links on the page. The replace function is also case insensitive. If you want the replace function to be case sensitive, then you can change the compare parameter of the instr and instrrev functions. |
| Instructions: | try using the function like this: myHTML = "here is some HTML. I love html <img src="images/i-love-html.gif" alt="Loving the HtML"> this is a <a href="page.html">page about html here</a>." glossarylink = "<a href="#" onclick="window.open('glosary.php#html')">html</a>" myNewHTML = replaceHTML(myHTML,"html",glossarylink) response.write myNewHTML --- this will output: "here is some <a href="#" onclick="window.open('glosary.php#html')">html</a>. I love<a href="#" onclick="window.open('glosary.php#html')">html</a> <img src="images/i-love-html.gif" alt="Loving the HtML"> this is a <a href="page.html">page about html here</a>." |
| Code: | |
Comments
Related Scripts:
Shorten string to maximum lengthconvert string to xml valid text
convert user submitted string to safe format
ASP Capitalize first letter of string
ASP URL Decode
Strip HTML code from string
Tags
[ replace function html ] [View tag cloud]Back to main scripts page
Tag Cloud Submit a script
Latest Scripts Added
jQuery image swap on mouseover (jQuery)04 January 2012
This simple bit of code allows you to quickly create image rollovers. The code was modified from a version by Sam Colletts on http://webdevel.blogspot.com/2008/04/rollover-images-with-jquery.html ...
replace XML characters in a string using ASP.Net (ASP.Net)
12 December 2011
Sometimes you need to insert a string into an xml document. Before doing this, you need to ensure that your string does not contain any special xml characters. It is possible to use a CDATA section ...
How to remove title tag in ASP.Net (ASP.Net)
14 October 2011
This is not really a script, but a little trick that you can use to remove the title tag in ASP.net. In ASP.net, when the head tag is rendered, the title tag is automatically added. One of the real ...
ASP sort numerical array (ASP)
12 September 2011
This code is similar to the sort array script which sorts an array alphabetical, however it also sorts arrays based on numberical ordering, for example: dim numbers(4) numbers(0) = ...
Force file download in ASP.Net / c# (ASP.Net)
02 September 2011
this script allows you to force browsers to display a file save dialogue for any file type. It contains a string of allowed file types so users cannot change the querystring to downoad your ...

