实现Javascript替换字符的方法

来源:岁月联盟 编辑:zhuzhu 时间:2009-10-12

在这里我们将讨论的是如何实现Javascript替换字符的方法,这一项功能在实际开发过程中其实很有作用,希望能起到事半功倍的效果。

不用多言,这种技术被广泛应用于表单验证,语法高亮和危险字符过滤中。一段话如果很长,如果不想像下面那样替换,我们得想些办法了。

  1. str = str.   
  2. replace( /&(?!#?/w+;)/g , '&').      
  3. replace( /"([^"]*)"/g   , '“$1”'   ).     
  4. replace( /</g           , '&lt;'  ).     
  5. replace( />/g           , '&gt;' ).     
  6. replace( /…/g           , '&hellip;' ).    
  7. replace( /“/g           , '&ldquo;'  ).     
  8. replace( /”/g           , '&rdquo;'  ).     
  9. replace( /‘/g           , '&lsquo;'  ).     
  10. replace( /’/g           , '&rsquo;'  ).    
  11. replace( /—/g           , '&mdash;' ).     
  12. replace( /–/g           , '&ndash;'  ); 

上面这个还算短了,我看过一些论坛的JS代码,在把Wind Code转换成HTML时,那真是疯子似的写上二三十行。其实我们大可以把这些匹配模式与替换后的字符放到一个哈希中,然后一口气替换掉。

  1. var hash = {      
  2. '<' : '&lt;' ,    
  3. '>' : '&gt;',     
  4. '…' : '&hellip;',     
  5. '“' : '&ldquo;' ,    
  6. '”' : '&rdquo;' ,     
  7. '‘' : '&lsquo;' ,   
  8. '’' : '&rsquo;' ,     
  9. '—' : '&mdash;',     
  10. '–' : '&ndash;' 
  11. };   
  12. str = str.     
  13. replace( /&(?!#?/w+;)/g , '&amp;' ).     
  14. replace( /"([^"]*)"/g   , '“$1”'  ).     
  15. replace( /[<>…“”‘’—–]/g , function ( $0 ) {         
  16. return hash[ $0 ];     
  17. }); 

但这个缺陷也很明显,如哈希的键必须是简单的普通字符串,不能是复杂正则,这就是我们不得不分开的原因。replace在老一点的浏览器是不支持function的。为此,我们只好放弃上面最后那个replace方式,Javascript替换字符方统一为普通字符串。

  1. String.prototype.multiReplace = function ( hash ) {    
  2. var str = this, key;      
  3. for ( key in hash ) {       
  4. if ( Object.prototype.hasOwnProperty.call( hash, key ) ) {             
  5. str = str.replace( new RegExp( key, 'g' ), hash[ key ] );         
  6. }      
  7. }      
  8. return str;   
  9. }; 

Object.prototype.hasOwnProperty.call( hash, key )是用来过滤继承自原型的方法与属性的。这样一来,使用就简单了:

  1. str = str.multiReplace({      
  2. '&(?!#?//w+;)' :'&amp;',   
  3. '"([^"]*)" : '“$1”',     
  4. '<' : '&lt;' ,     
  5. '>' : '&gt;',     
  6. '…' : '&hellip;',      
  7. '“' : '&ldquo;' ,       
  8. '”' : '&rdquo;' ,      
  9. '‘' : '&lsquo;' ,     
  10. '’' : '&rsquo;' ,      
  11. '—' : '&mdash;',     
  12. '–' : '&ndash;' 
  13. });  

原文标题:javascript替换字符

链接:http://www.cnblogs.com/rubylouvre/archive/2009/10/12/1581094.html