Warning: Use of undefined constant Symbol - assumed 'Symbol' (this will throw an Error in a future version of PHP) in /mnt/new-ebs/workbench-106550/lib/dojo/util/docscripts/lib/parser2/dojo2.inc on line 215 Warning: Use of undefined constant JavaScriptSymbol - assumed 'JavaScriptSymbol' (this will throw an Error in a future version of PHP) in /mnt/new-ebs/workbench-106550/lib/dojo/util/docscripts/lib/parser2/dojo2.inc on line 215

dojox/string/Builder.js

  • Provides:

    • dojox.string.Builder
  • dojox.string.Builder

    • parameters:
      • str: (typeof String)
    • returns
      dojox.string.Builder|String
    • summary
      A fast buffer for creating large strings.
    • type
      Function
  • dojox.string.Builder.length

    • type
      Number
    • summary
      The current length of the internal string.
  • dojox.string.Builder.append

    • parameters:
      • s: (typeof String)
    • returns
      dojox.string.Builder
    • summary
      Append all arguments to the end of the buffer
    • type
      Function
  • dojox.string.Builder.concat

    • parameters:
      • s: (typeof String)
    • returns
      dojox.string.Builder
    • summary
      Alias for append.
    • type
      Function
  • dojox.string.Builder.appendArray

    • parameters:
      • strings: (typeof Array)
    • returns
      dojox.string.Builder
    • summary
      Append an array of items to the internal buffer.
    • type
      Function
  • dojox.string.Builder.clear

    • returns
      dojox.string.Builder
    • summary
      Remove all characters from the buffer.
    • type
      Function
  • dojox.string.Builder.replace

    • parameters:
      • oldStr: (typeof String)
      • newStr: (typeof String)
    • returns
      dojox.string.Builder
    • summary
      Replace instances of one string with another in the buffer.
    • type
      Function
  • dojox.string.Builder.remove

    • parameters:
      • start: (typeof Number)
      • len: (typeof Number)
    • returns
      dojox.string.Builder
    • summary
      Remove len characters starting at index start.  If len
      is not provided, the end of the string is assumed.
    • type
      Function
  • dojox.string.Builder.insert

    • parameters:
      • index: (typeof Number)
      • str: (typeof String)
    • returns
      dojox.string.Builder
    • summary
      Insert string str starting at index.
    • type
      Function
  • dojox.string.Builder.toString

    • returns
      String
    • summary
      Return the string representation of the internal buffer.
    • type
      Function
  • dojox.string

    • type
      Object
  • dojox

    • type
      Object