SysCompareText::run Method [AX 2012]
Contains the code that does that actual job of the class.
server public static container run(
str _text1,
str _text2,
[boolean _caseSensitive,
boolean _suppressWhiteSpace,
boolean _lineNumbers,
boolean _singleLine,
boolean _alternateLines])
Run On
ServerParameters
- _text1
- Type: str
The first string to compare.
- _text2
- Type: str
The second string to compare.
- _caseSensitive
- Type: boolean
A Boolean value that indicates whether to make a case sensitive comparison; optional.
- _suppressWhiteSpace
- Type: boolean
A Boolean value that indicates whether to remove spaces, tabs, carriage returns and line feeds before the comparison; optional.
- _lineNumbers
- Type: boolean
A Boolean value that indicates whether to add line numbers to the result; optional.
- _singleLine
- Type: boolean
A Boolean value that indicates whether to return only one line per entry in the result container; optional.
- _alternateLines
- Type: boolean
A Boolean value that indicates whether to first return a line from the _text1parameter, a line from the _text2 parameter, and then a line from the _text1 parameter again; optional.
Show: