替换文本字符串上的函数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了替换文本字符串上的函数相关的知识,希望对你有一定的参考价值。

Builds a function which replace some caracters
  1. onClipEvent (load) {
  2. //associa replace, che abbiamo creato noi con una funzione a tutte le stringhe.
  3. String.prototype.replace = function(stringa, rep) {
  4. var temp_array = this.split(stringa);
  5. return temp_array.join(rep);
  6. };
  7. }
  8.  
  9.  
  10.  
  11.  
  12. //now, an example of use:
  13.  
  14.  
  15. onClipEvent (enterFrame) {
  16. if (fine == 1) {
  17. vel = 8;
  18. testo_app = new String(testo0);
  19. stringhe = new Array(new Array('*ec*', '&'), new Array("&", "&"), new Array("à", "à"), new Array("è", "è"), new Array("ì", "ì"), new Array("ò", "ò"), new Array("ù", "ù"), new Array("é", "é"));
  20. num_stringhe = stringhe.length;
  21. for (i=0; i<num_stringhe; i++) {
  22. testo_app = testo_app.replace(stringhe[i][0], stringhe[i][1]);
  23. }
  24. fine = 2;
  25. i = 0;
  26. l = testo_app.length;
  27. testo = " ";}
  28. if (fine == 2) {
  29. i=i+vel;
  30. if (i>l){i=l;
  31. fine=3;}
  32. testo = testo_app.substr(0, i);
  33. if (i == l) {
  34. fine = 4;
  35.  
  36. }
  37. }
  38. }

以上是关于替换文本字符串上的函数的主要内容,如果未能解决你的问题,请参考以下文章

用片段替换某些东西

如何在实时代码应用程序中的Mac OS X上收听特定的文本字符串

在tablayout中替换片段

SQLite 片段函数实现不会在 TextView 中将文本格式化为 HTML

替换未调用 onAttach、onCreate、onCreateView 等的活动中的片段

java 字符串替换