dzLib.js
 

listReplace

jsEssentials
dateLib
 
jsStrings
 
Controls
 
Tools
 
Navigate
 

Description:
When replacing a number of different strings in a string, consecutive calls to String.replace() is not really efficient. This function solves this problem. It makes use of associative arrays. This is my first attempt to make an UBB parser, which is used in web-forums.

Download: code, view-source.
Targetted: all
Tested on: win32: ie5..ie6, ns6.1, OS X: ie5.1

Usage

 
//Use this form to replace just one string
s=listReplace(s,initTokenCache(aHTMLTokens));

//Or if more than one string needs to be taken care of
var aTokenCache=initTokenCache(aUBBTokens);
s1=listReplace(s1,aTokenCache);
s2=listReplace(s2,aTokenCache);

Live Demo

input
output (text)
control
output (html)
 
The listReplace uses the following dictionary in this example:
[u] → <u>
[/u] → </u>
[b] → <b>
[/b] → </b>
[i] → <i>
[/i] → </i>
[code] → <code>
[/code] → </code>
[br] → <br>
:-) → <img src="../img/smileyHappy.gif">
:-( → <img src="../img/smileyAngry.gif">