Difference between revisions of "Gsub"

From SDU
Jump to: navigation, search
(New page: __NOTOC__ {{Global Header}} {{Global Announcement}} == Overview == A spell function returning the string with every occurence of a given pattern replaced by another string. == Usage == <...)
 
(No difference)

Latest revision as of 12:41, 8 September 2010

To make corrections or additions to this article, select the edit tab above.
To discuss or ask questions about this article, select the discussion tab above.

Overview

A spell function returning the string with every occurence of a given pattern replaced by another string.

Usage

<source lang="javascript"> string gsub(strSource, strRegEx, strReplacement); </source>

  • strSource - source string to be replaced
  • strRegEx - regular expression pattern
  • strReplacement - by which string should be pattern replaced

Results

Returns changed string or the same string if pattern does not match.

Examples

  • Convert several lines to a one comma separated string

<source lang="javascript">

gsub(errorStr,"\n", ", ")

</source>