{ "ns" : "http://zorba.io/modules/excel/text", "description" : " This is a library module offering the same set of functions\n defined by Microsoft Excel, under Text and Data Functions.\n", "sees" : [ "Excel Documentation: Text Functions" ], "authors" : [ "Sorin Nasoi" ], "version" : null, "encoding" : "utf-8", "namespaces" : [ { "uri" : "http://zorba.io/modules/excel/errors", "prefix" : "excel-err" }, { "uri" : "http://zorba.io/modules/excel/math", "prefix" : "excel-math" }, { "uri" : "http://zorba.io/modules/excel/text", "prefix" : "excel-text" }, { "uri" : "http://zorba.io/options/versioning", "prefix" : "ver" } ], "functions" : [ { "arity" : 1, "name" : "asc", "qname" : "excel-text:asc", "signature" : "($text as xs:string) as xs:string", "description" : " Returns the given $text unchanged.\n", "summary" : "

Returns the given $text unchanged.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "text", "type" : "xs:string", "occurence" : null, "description" : "
the time
" } ], "returns" : { "type" : "xs:string", "description" : "The given $text unchanged." }, "errors" : [ ] }, { "arity" : 1, "name" : "char", "qname" : "excel-text:char", "signature" : "($number as xs:integer) as xs:string", "description" : " Returns the character specified by a certain codepoint.\n", "summary" : "

Returns the character specified by a certain codepoint.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "number", "type" : "xs:integer", "occurence" : null, "description" : "
the codepoint.
" } ], "returns" : { "type" : "xs:string", "description" : "the character specified by a certain codepoint." }, "errors" : [ "excel-err:Value provided $number must be in range [1,255]." ] }, { "arity" : 1, "name" : "clean", "qname" : "excel-text:clean", "signature" : "($arg as xs:string?) as xs:string?", "description" : " Removes all nonprintable characters from text.\n", "summary" : "

Removes all nonprintable characters from text.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "arg", "type" : "xs:string", "occurence" : null, "description" : "
the string.
" } ], "returns" : { "type" : "xs:string?", "description" : "Removes all nonprintable characters from text. The CLEAN function was designed. to remove the first 32 nonprinting characters in the 7-bit ASCII code (values 0 through 31) from text.

In the Unicode character set, there are additional nonprinting characters (values 127, 129, 141, 143, 144, and 157).

By itself, the CLEAN function does not remove these additional nonprinting characters." }, "errors" : [ ] }, { "arity" : 1, "name" : "code", "qname" : "excel-text:code", "signature" : "($arg as xs:string) as xs:integer", "description" : " Returns a codepoint for the first character in a text string.\n", "summary" : "

Returns a codepoint for the first character in a text string.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "arg", "type" : "xs:string", "occurence" : null, "description" : "
the string.
" } ], "returns" : { "type" : "xs:integer", "description" : "A codepoint for the first character in a text string." }, "errors" : [ "excel-err:Value Provided $arg was empty." ] }, { "arity" : 1, "name" : "concatenate", "qname" : "excel-text:concatenate", "signature" : "($args as xs:anyAtomicType*) as xs:string", "description" : " Joins several text strings into one text string.\n", "summary" : "

Joins several text strings into one text string.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "args", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "
a sequence of strings.
" } ], "returns" : { "type" : "xs:string", "description" : "Joins several text strings into one text string." }, "errors" : [ ] }, { "arity" : 2, "name" : "concatenate", "qname" : "excel-text:concatenate", "signature" : "($arg1 as xs:anyAtomicType?, $arg2 as xs:anyAtomicType?) as xs:string", "description" : " Joins two text strings into one text string.\n", "summary" : "

Joins two text strings into one text string.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "arg1", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "
the first string.
" }, { "name" : "arg2", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "
the second string.
" } ], "returns" : { "type" : "xs:string", "description" : "Joins two text strings into one text string." }, "errors" : [ ] }, { "arity" : 1, "name" : "dollar", "qname" : "excel-text:dollar", "signature" : "($number as xs:decimal) as xs:string", "description" : " Converts a number to text format and applies a currency symbol. The number of\ndigits to the right of the decimal point is 2.\n", "summary" : "

Converts a number to text format and applies a currency symbol.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "number", "type" : "xs:decimal", "occurence" : null, "description" : "
is the number.
" } ], "returns" : { "type" : "xs:string", "description" : "Converts a number to text format and applies a currency symbol. The number of digits to the right of the decimal point is 2." }, "errors" : [ ] }, { "arity" : 2, "name" : "dollar", "qname" : "excel-text:dollar", "signature" : "($number as xs:decimal, $decimals as xs:decimal) as xs:string", "description" : " Converts a number to text format and applies a currency symbol.\n", "summary" : "

Converts a number to text format and applies a currency symbol.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "number", "type" : "xs:decimal", "occurence" : null, "description" : "
is the number.
" }, { "name" : "decimals", "type" : "xs:decimal", "occurence" : null, "description" : "
is the number of digits to the right of the decimal point.

If decimals is negative, number is rounded to the left of the decimal point.

" } ], "returns" : { "type" : "xs:string", "description" : "Converts a number to text format and applies a currency symbol." }, "errors" : [ ] }, { "arity" : 2, "name" : "exact", "qname" : "excel-text:exact", "signature" : "($arg1 as xs:string, $arg2 as xs:string) as xs:boolean", "description" : " Compares two text strings and returns TRUE if they are exactly the same,\nFALSE otherwise. EXACT is case-sensitive but ignores formatting differences.\n", "summary" : "

Compares two text strings and returns TRUE if they are exactly the same,\nFALSE otherwise.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "arg1", "type" : "xs:string", "occurence" : null, "description" : "
the first string.
" }, { "name" : "arg2", "type" : "xs:string", "occurence" : null, "description" : "
the second string.
" } ], "returns" : { "type" : "xs:boolean", "description" : "Compares two text strings and returns TRUE if they are exactly the same, FALSE otherwise. EXACT is case-sensitive but ignores formatting differences." }, "errors" : [ ] }, { "arity" : 2, "name" : "find", "qname" : "excel-text:find", "signature" : "($find_text as xs:string, $within_text as xs:string) as xs:integer?", "description" : " Locate one text string within a second text string, and return the number of the\n starting position of the first text string from the first character of the second text string.

\n The search is case sensitive.\n", "summary" : "

Locate one text string within a second text string, and return the number of the\n starting position of the first text string from the first character of the second text string.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "find_text", "type" : "xs:string", "occurence" : null, "description" : "
text you want to find.
" }, { "name" : "within_text", "type" : "xs:string", "occurence" : null, "description" : "
text in which you want to search for $find_text.
" } ], "returns" : { "type" : "xs:integer?", "description" : "Locate one text string within a second text string, and return the number of the starting position of the first text string from the first character of the second text string.

The search is case sensitive." }, "errors" : [ "excel-err:Value the value is not greater than zero or is greater than the length of within_text.", "excel-err:Value value was not found." ] }, { "arity" : 3, "name" : "find", "qname" : "excel-text:find", "signature" : "($find_text as xs:string, $within_text as xs:string, $start_num as xs:integer) as xs:integer?", "description" : " Locate one text string within a second text string, and return the number of the\n starting position of the first text string from the first character of the second text string.

\n The search is case sensitive.\n", "summary" : "

Locate one text string within a second text string, and return the number of the\n starting position of the first text string from the first character of the second text string.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "find_text", "type" : "xs:string", "occurence" : null, "description" : "
text you want to find.
" }, { "name" : "within_text", "type" : "xs:string", "occurence" : null, "description" : "
text in which you want to search for $find_text.
" }, { "name" : "start_num", "type" : "xs:integer", "occurence" : null, "description" : "
specifies the character at which to start the search.
" } ], "returns" : { "type" : "xs:integer?", "description" : "Locate one text string within a second text string, and return the number of the starting position of the first text string from the first character of the second text string.

The search is case sensitive." }, "errors" : [ "excel-err:Value the value is not greater than zero or is greater than the length of within_text.", "excel-err:Value value was not found." ] }, { "arity" : 2, "name" : "fixed", "qname" : "excel-text:fixed", "signature" : "($number as xs:decimal, $decimals as xs:decimal) as xs:string", "description" : " Rounds a number to the specified number of decimals, formats the number in\n decimal format using a period and commas, and returns the result as text.\n", "summary" : "

Rounds a number to the specified number of decimals, formats the number in\n decimal format using a period and commas, and returns the result as text.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "number", "type" : "xs:decimal", "occurence" : null, "description" : "
is the number you want to round and convert to text.
" }, { "name" : "decimals", "type" : "xs:decimal", "occurence" : null, "description" : "
is the number of digits to the right of the decimal point.
" } ], "returns" : { "type" : "xs:string", "description" : "Rounds a number to the specified number of decimals, formats the number in decimal format using a period and commas, and returns the result as text." }, "errors" : [ ] }, { "arity" : 3, "name" : "fixed", "qname" : "excel-text:fixed", "signature" : "($number as xs:decimal, $decimals as xs:decimal, $no_commas as xs:boolean) as xs:string", "description" : " Rounds a number to the specified number of decimals, formats the number in\ndecimal format using a period and commas, and returns the result as text.\n", "summary" : "

Rounds a number to the specified number of decimals, formats the number in\ndecimal format using a period and commas, and returns the result as text.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "number", "type" : "xs:decimal", "occurence" : null, "description" : "
is the number you want to round and convert to text.
" }, { "name" : "decimals", "type" : "xs:decimal", "occurence" : null, "description" : "
is the number of digits to the right of the decimal point.
" }, { "name" : "no_commas", "type" : "xs:boolean", "occurence" : null, "description" : "
is a logical value that, if TRUE, prevents FIXED from including commas in the returned text.
" } ], "returns" : { "type" : "xs:string", "description" : "Rounds a number to the specified number of decimals, formats the number in decimal format using a period and commas, and returns the result as text." }, "errors" : [ ] }, { "arity" : 1, "name" : "left", "qname" : "excel-text:left", "signature" : "($arg as xs:string) as xs:string", "description" : " Returns the first character in a text string.\n", "summary" : "

Returns the first character in a text string.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "arg", "type" : "xs:string", "occurence" : null, "description" : "
is the text string that contains the characters you want to extract.
" } ], "returns" : { "type" : "xs:string", "description" : "The first character in a text string." }, "errors" : [ ] }, { "arity" : 2, "name" : "left", "qname" : "excel-text:left", "signature" : "($text as xs:string, $num_chars as xs:integer) as xs:string", "description" : " Returns the first character or characters in $text, based on the number of $num_chars you specify.\n", "summary" : "

Returns the first character or characters in $text, based on the number of $num_chars you specify.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "text", "type" : "xs:string", "occurence" : null, "description" : "
is the text string that contains the characters you want to extract.
" }, { "name" : "num_chars", "type" : "xs:integer", "occurence" : null, "description" : "
specifies the number of characters you want to extract.
" } ], "returns" : { "type" : "xs:string", "description" : "The first character or characters in $text, based on the number of $num_chars you specify." }, "errors" : [ ] }, { "arity" : 1, "name" : "len", "qname" : "excel-text:len", "signature" : "($arg as xs:string?) as xs:integer", "description" : " Returns the number of characters in a text string.\n", "summary" : "

Returns the number of characters in a text string.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "arg", "type" : "xs:string", "occurence" : null, "description" : "
the string.
" } ], "returns" : { "type" : "xs:integer", "description" : "The number of characters in a text string." }, "errors" : [ ] }, { "arity" : 1, "name" : "lower", "qname" : "excel-text:lower", "signature" : "($arg as xs:string?) as xs:string?", "description" : " Converts all uppercase letters in a text string to lowercase.\n", "summary" : "

Converts all uppercase letters in a text string to lowercase.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "arg", "type" : "xs:string", "occurence" : null, "description" : "
the string.
" } ], "returns" : { "type" : "xs:string?", "description" : "Converts all uppercase letters in a text string to lowercase." }, "errors" : [ ] }, { "arity" : 3, "name" : "mid", "qname" : "excel-text:mid", "signature" : "($text as xs:string?, $start_num as xs:integer, $num_chars as xs:integer) as xs:string?", "description" : " Returns a specific number of characters from a text string, starting at\nthe position you specify, based on the number of characters you specify.\n", "summary" : "

Returns a specific number of characters from a text string, starting at\nthe position you specify, based on the number of characters you specify.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "text", "type" : "xs:string", "occurence" : null, "description" : "
the text string containing the characters you want to extract.
" }, { "name" : "start_num", "type" : "xs:integer", "occurence" : null, "description" : "
the position of the first character you want to extract in text. The first character in text has start_num 1, and so on.
" }, { "name" : "num_chars", "type" : "xs:integer", "occurence" : null, "description" : "
the number of characters you want to return from text.
" } ], "returns" : { "type" : "xs:string?", "description" : "A specific number of characters from a text string, starting at the position you specify, based on the number of characters you specify." }, "errors" : [ ] }, { "arity" : 3, "name" : "pad-integer-to-length", "qname" : "excel-text:pad-integer-to-length", "signature" : "($toPad as xs:anyAtomicType?, $padChar as xs:string, $length as xs:integer) as xs:string", "description" : " Returns $toPad appended with enough repetitions of $padChar to make its length $length, the characters are added before the string.\n", "summary" : "

Returns $toPad appended with enough repetitions of $padChar to make its length $length, the characters are added before the string.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "toPad", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "
the value to be padded.
" }, { "name" : "padChar", "type" : "xs:string", "occurence" : null, "description" : "
the character used for padding.
" }, { "name" : "length", "type" : "xs:integer", "occurence" : null, "description" : "
the desired length.
" } ], "returns" : { "type" : "xs:string", "description" : "$toPad appended with enough repetitions of $padChar to make its length $length, the characters are added before the string." }, "errors" : [ "excel-err:Value if the length of the $toPad is greater than the desired length." ] }, { "arity" : 4, "name" : "replace", "qname" : "excel-text:replace", "signature" : "($old_text as xs:string?, $start_num as xs:integer, $num_chars as xs:integer, $new_text as xs:string) as xs:string", "description" : " Replaces part of a text string, based on the number of characters you specify, with a different text string.\n", "summary" : "

Replaces part of a text string, based on the number of characters you specify, with a different text string.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "old_text", "type" : "xs:string", "occurence" : null, "description" : "
is text in which you want to replace some characters.
" }, { "name" : "start_num", "type" : "xs:integer", "occurence" : null, "description" : "
the position of the character in old_text that you want to replace with new_text.
" }, { "name" : "num_chars", "type" : "xs:integer", "occurence" : null, "description" : "
the number of characters in old_text that you want REPLACE to replace with new_text.
" }, { "name" : "new_text", "type" : "xs:string", "occurence" : null, "description" : "
the text that will replace characters in old_text.
" } ], "returns" : { "type" : "xs:string", "description" : "Replaces part of a text string, based on the number of characters you specify, with a different text string." }, "errors" : [ ] }, { "arity" : 1, "name" : "right", "qname" : "excel-text:right", "signature" : "($arg as xs:string) as xs:string", "description" : " Returns the last character in a text string.\n", "summary" : "

Returns the last character in a text string.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "arg", "type" : "xs:string", "occurence" : null, "description" : "
the text string containing the characters you want to extract.
" } ], "returns" : { "type" : "xs:string", "description" : "The last character in a text string." }, "errors" : [ ] }, { "arity" : 2, "name" : "right", "qname" : "excel-text:right", "signature" : "($text as xs:string, $num_chars as xs:integer) as xs:string", "description" : " Returns the last character or characters in a text string, based on the number of characters you specify.\n", "summary" : "

Returns the last character or characters in a text string, based on the number of characters you specify.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "text", "type" : "xs:string", "occurence" : null, "description" : "
the text string containing the characters you want to extract.
" }, { "name" : "num_chars", "type" : "xs:integer", "occurence" : null, "description" : "
specifies the number of characters you want RIGHT to extract.
" } ], "returns" : { "type" : "xs:string", "description" : "The last character or characters in a text string, based on the number of characters you specify." }, "errors" : [ ] }, { "arity" : 2, "name" : "search", "qname" : "excel-text:search", "signature" : "($find_text as xs:string, $within_text as xs:string) as xs:integer?", "description" : " Locate one text string within a second text string, and return the number of\n the starting position of the first text string from the first character of the\n second text string.

The search starts at position 1, and it is not case sensitive.\n", "summary" : "

Locate one text string within a second text string, and return the number of\n the starting position of the first text string from the first character of the\n second text string.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "find_text", "type" : "xs:string", "occurence" : null, "description" : "
text you want to find.
" }, { "name" : "within_text", "type" : "xs:string", "occurence" : null, "description" : "
text in which you want to search for $find_text.
" } ], "returns" : { "type" : "xs:integer?", "description" : "Locate one text string within a second text string, and return the number of the starting position of the first text string from the first character of the second text string.

The search starts at position 1, and it is not case sensitive." }, "errors" : [ "excel-err:Value the value is not greater than zero or is greater than the length of within_text.", "excel-err:Value value was not found." ] }, { "arity" : 3, "name" : "search", "qname" : "excel-text:search", "signature" : "($find_text as xs:string, $within_text as xs:string, $start_num as xs:integer) as xs:integer?", "description" : " Locate one text string within a second text string, and return the number of\n the starting position of the first text string from the first character of the\n second text string.

The search starts at $start_num, and it is not case sensitive.\n", "summary" : "

Locate one text string within a second text string, and return the number of\n the starting position of the first text string from the first character of the\n second text string.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "find_text", "type" : "xs:string", "occurence" : null, "description" : "
text you want to find.
" }, { "name" : "within_text", "type" : "xs:string", "occurence" : null, "description" : "
text in which you want to search for $find_text.
" }, { "name" : "start_num", "type" : "xs:integer", "occurence" : null, "description" : "
the character number in within_text at which you want to start searching.
" } ], "returns" : { "type" : "xs:integer?", "description" : "Locate one text string within a second text string, and return the number of the starting position of the first text string from the first character of the second text string.

The search starts at $start_num, and it is not case sensitive." }, "errors" : [ "excel-err:Value the value is not greater than zero or is greater than the length of within_text.", "excel-err:Value value was not found." ] }, { "arity" : 3, "name" : "substitute", "qname" : "excel-text:substitute", "signature" : "($text as xs:string, $old_text as xs:string, $new_text as xs:string) as xs:string?", "description" : " Substitutes new_text for old_text in a text string. Every occurrence of old_text in text is changed to new_text.\n", "summary" : "

Substitutes new_text for old_text in a text string.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "text", "type" : "xs:string", "occurence" : null, "description" : "
the text or the reference to a cell containing text for which you want to substitute characters.
" }, { "name" : "old_text", "type" : "xs:string", "occurence" : null, "description" : "
text you want to replace.
" }, { "name" : "new_text", "type" : "xs:string", "occurence" : null, "description" : "
text you want to replace old_text with.
" } ], "returns" : { "type" : "xs:string?", "description" : "Substitutes new_text for old_text in a text string. Every occurrence of old_text in text is changed to new_text." }, "errors" : [ ] }, { "arity" : 4, "name" : "substitute", "qname" : "excel-text:substitute", "signature" : "($text as xs:string, $old_text as xs:string, $new_text as xs:string, $instance_num as xs:integer?) as xs:string", "description" : " Substitutes new_text for old_text in a text string.\n", "summary" : "

Substitutes new_text for old_text in a text string.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "text", "type" : "xs:string", "occurence" : null, "description" : "
the text or the reference to a cell containing text for which you want to substitute characters.
" }, { "name" : "old_text", "type" : "xs:string", "occurence" : null, "description" : "
text you want to replace.
" }, { "name" : "new_text", "type" : "xs:string", "occurence" : null, "description" : "
text you want to replace old_text with.
" }, { "name" : "instance_num", "type" : "xs:integer", "occurence" : null, "description" : "
specifies which occurrence of old_text you want to replace with new_text.

Only that instance of old_text is replaced.

" } ], "returns" : { "type" : "xs:string", "description" : "Substitutes new_text for old_text in a text string.

Use SUBSTITUTE when you want to replace specific text in a text string; use REPLACE when you want to replace any text that occurs in a specific location in a text string." }, "errors" : [ ] }, { "arity" : 1, "name" : "t", "qname" : "excel-text:t", "signature" : "($value as xs:anyAtomicType?) as xs:string", "description" : " Converts the $value to string.\n", "summary" : "

Converts the $value to string.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "value", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "
the value
" } ], "returns" : { "type" : "xs:string", "description" : "Converts the $value to string." }, "errors" : [ ] }, { "arity" : 1, "name" : "trim", "qname" : "excel-text:trim", "signature" : "($text as xs:string?) as xs:string?", "description" : " Removes all spaces from text except for single spaces between words.\n", "summary" : "

Removes all spaces from text except for single spaces between words.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "text", "type" : "xs:string", "occurence" : null, "description" : "
from which you want spaces removed.
" } ], "returns" : { "type" : "xs:string?", "description" : "Removes all spaces from text except for single spaces between words." }, "errors" : [ ] }, { "arity" : 1, "name" : "upper", "qname" : "excel-text:upper", "signature" : "($text as xs:string?) as xs:string?", "description" : " Converts text to uppercase.\n", "summary" : "

Converts text to uppercase.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "text", "type" : "xs:string", "occurence" : null, "description" : "
text you want converted to uppercase.
" } ], "returns" : { "type" : "xs:string?", "description" : "Converts text to uppercase." }, "errors" : [ ] }, { "arity" : 2, "name" : "value-except", "qname" : "excel-text:value-except", "signature" : "($arg1 as xs:anyAtomicType*, $arg2 as xs:anyAtomicType*) as xs:anyAtomicType*", "description" : " Returns the values in one sequence that do not appear in the second sequence in an implementation-defined order.\n", "summary" : "

Returns the values in one sequence that do not appear in the second sequence in an implementation-defined order.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "arg1", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "
the first sequence.
" }, { "name" : "arg2", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "
the second sequence.
" } ], "returns" : { "type" : "xs:anyAtomicType*", "description" : "The values in one sequence that do not appear in the second sequence in an implementation-defined order." }, "errors" : [ ] }, { "arity" : 1, "name" : "value", "qname" : "excel-text:value", "signature" : "($arg as xs:anyAtomicType?) as xs:anyAtomicType?", "description" : " Converts a text string that represents a number to a number.\n", "summary" : "

Converts a text string that represents a number to a number.

", "annotation_str" : "", "annotations" : [ ], "updating" : false, "parameters" : [ { "name" : "arg", "type" : "xs:anyAtomicType", "occurence" : null, "description" : "
the value.
" } ], "returns" : { "type" : "xs:anyAtomicType?", "description" : "Converts a text string that represents a number to a number." }, "errors" : [ "excel-err:Value provided value is not a number." ] } ], "variables" : [ ] }