fckjscoreextensions.js
上传用户:li2971742
上传日期:2021-11-18
资源大小:39096k
文件大小:3k
源码类别:

OA系统

开发平台:

C#

  1. /*
  2.  * FCKeditor - The text editor for internet
  3.  * Copyright (C) 2003-2006 Frederico Caldeira Knabben
  4.  * 
  5.  * Licensed under the terms of the GNU Lesser General Public License:
  6.  *  http://www.opensource.org/licenses/lgpl-license.php
  7.  * 
  8.  * For further information visit:
  9.  *  http://www.fckeditor.net/
  10.  * 
  11.  * "Support Open Source software. What about a donation today?"
  12.  * 
  13.  * File Name: fckjscoreextensions.js
  14.  *  Extensions to the JavaScript Core.
  15.  * 
  16.  *  All custom extentions functions are PascalCased to differ from the standard
  17.  *  camelCased ones.
  18.  * 
  19.  * File Authors:
  20.  *  Frederico Caldeira Knabben (fredck@fckeditor.net)
  21.  */
  22. String.prototype.Contains = function( textToCheck )
  23. {
  24. return ( this.indexOf( textToCheck ) > -1 ) ;
  25. }
  26. String.prototype.Equals = function()
  27. {
  28. for ( var i = 0 ; i < arguments.length ; i++ )
  29. if ( this == arguments[i] )
  30. return true ;
  31. return false ;
  32. }
  33. String.prototype.ReplaceAll = function( searchArray, replaceArray )
  34. {
  35. var replaced = this ;
  36. for ( var i = 0 ; i < searchArray.length ; i++ )
  37. {
  38. replaced = replaced.replace( searchArray[i], replaceArray[i] ) ;
  39. }
  40. return replaced ;
  41. }
  42. Array.prototype.AddItem = function( item )
  43. {
  44. var i = this.length ;
  45. this[ i ] = item ;
  46. return i ;
  47. }
  48. Array.prototype.indexOf = function( value )
  49. {
  50. for ( var i = 0 ; i < this.length ; i++ )
  51. {
  52. if ( this[i] == value )
  53. return i ;
  54. }
  55. return -1 ;
  56. }
  57. String.prototype.startsWith = function( value )
  58. {
  59. return ( this.substr( 0, value.length ) == value ) ;
  60. }
  61. // Extends the String object, creating a "endsWith" method on it.
  62. String.prototype.endsWith = function( value, ignoreCase )
  63. {
  64. var L1 = this.length ;
  65. var L2 = value.length ;
  66. if ( L2 > L1 )
  67. return false ;
  68. if ( ignoreCase )
  69. {
  70. var oRegex = new RegExp( value + '$' , 'i' ) ;
  71. return oRegex.test( this ) ;
  72. }
  73. else
  74. return ( L2 == 0 || this.substr( L1 - L2, L2 ) == value ) ;
  75. }
  76. String.prototype.remove = function( start, length )
  77. {
  78. var s = '' ;
  79. if ( start > 0 )
  80. s = this.substring( 0, start ) ;
  81. if ( start + length < this.length )
  82. s += this.substring( start + length , this.length ) ;
  83. return s ;
  84. }
  85. String.prototype.trim = function()
  86. {
  87. return this.replace( /(^s*)|(s*$)/g, '' ) ;
  88. }
  89. String.prototype.ltrim = function()
  90. {
  91. return this.replace( /^s*/g, '' ) ;
  92. }
  93. String.prototype.rtrim = function()
  94. {
  95. return this.replace( /s*$/g, '' ) ;
  96. }
  97. String.prototype.replaceNewLineChars = function( replacement )
  98. {
  99. return this.replace( /n/g, replacement ) ;
  100. }