替换文本字符串上的函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了替换文本字符串上的函数相关的知识,希望对你有一定的参考价值。
Builds a function which replace some caracters
onClipEvent (load) { //associa replace, che abbiamo creato noi con una funzione a tutte le stringhe. String.prototype.replace = function(stringa, rep) { var temp_array = this.split(stringa); return temp_array.join(rep); }; } //now, an example of use: onClipEvent (enterFrame) { if (fine == 1) { vel = 8; testo_app = new String(testo0); stringhe = new Array(new Array('*ec*', '&'), new Array("&", "&"), new Array("à", "à "), new Array("è", "è"), new Array("ì", "ì"), new Array("ò", "ò"), new Array("ù", "ù"), new Array("é", "é")); num_stringhe = stringhe.length; for (i=0; i<num_stringhe; i++) { testo_app = testo_app.replace(stringhe[i][0], stringhe[i][1]); } fine = 2; i = 0; l = testo_app.length; testo = " ";} if (fine == 2) { i=i+vel; if (i>l){i=l; fine=3;} testo = testo_app.substr(0, i); if (i == l) { fine = 4; } } }
以上是关于替换文本字符串上的函数的主要内容,如果未能解决你的问题,请参考以下文章
如何在实时代码应用程序中的Mac OS X上收听特定的文本字符串
SQLite 片段函数实现不会在 TextView 中将文本格式化为 HTML