Expression: Difference between revisions

From ContactsLaw Documentation
Line 60: Line 60:


* ''<code>values</code>'' - Values.
* ''<code>values</code>'' - Values.
  '''Range'''(''set'', [''start'' = 1], [''count''])
  '''Range'''(''set'', [''start'' = 1], [''count''])
Creates a subset of a set.
Creates a subset of a set.
Line 67: Line 66:
* ''<code>position</code>'' - Starting position.
* ''<code>position</code>'' - Starting position.
* ''<code>count</code>'' - Number of items (maximum) to include.
* ''<code>count</code>'' - Number of items (maximum) to include.
  '''Union'''(''set1'', ''set2'')
  '''Union'''(''set1'', ''set2'')
Gets the union of two sets.
Gets the union of two sets.
Line 73: Line 71:
* ''<code>set1</code>'' - A set of values or assets.
* ''<code>set1</code>'' - A set of values or assets.
* ''<code>set2</code>'' - A set of values or assets.
* ''<code>set2</code>'' - A set of values or assets.
  '''Except'''(''set'', ''excluded'')
  '''Except'''(''set'', ''excluded'')
Gets the items in a set which do not appear in some other set.
Gets the items in a set which do not appear in some other set.
Line 79: Line 76:
* ''<code>set</code>'' - A set of values or assets.
* ''<code>set</code>'' - A set of values or assets.
* ''<code>excluded</code>'' - Values/assets to exclude.
* ''<code>excluded</code>'' - Values/assets to exclude.
  '''Intersection'''(''set1'', ''set2'')
  '''Intersection'''(''set1'', ''set2'')
Gets the intersection of two sets.
Gets the intersection of two sets.
Line 85: Line 81:
* ''<code>set1</code>'' - A set of values or assets.
* ''<code>set1</code>'' - A set of values or assets.
* ''<code>set2</code>'' - A set of values or assets.
* ''<code>set2</code>'' - A set of values or assets.
  '''Sort'''(''set'', [''smart'' = Yes])
  '''Sort'''(''set'', [''smart'' = Yes])
Sorts the items in a set.
Sorts the items in a set.
Line 91: Line 86:
* ''<code>set</code>'' - A set of values or assets.
* ''<code>set</code>'' - A set of values or assets.
* ''<code>smart</code>'' - Whether to use natural language sorting rules.
* ''<code>smart</code>'' - Whether to use natural language sorting rules.
  '''RSort'''(''set'', [''smart'' = Yes])
  '''RSort'''(''set'', [''smart'' = Yes])
Sorts the items in a set in reverse order.
Sorts the items in a set in reverse order.
Line 97: Line 91:
* ''<code>set</code>'' - A set of values or assets.
* ''<code>set</code>'' - A set of values or assets.
* ''<code>smart</code>'' - Whether to use natural language sorting rules.
* ''<code>smart</code>'' - Whether to use natural language sorting rules.
  '''NotEmpty'''(''set'')
  '''NotEmpty'''(''set'')
Filters a set by excluding empty values.
Filters a set by excluding empty values.


* ''<code>set</code>'' - A set of values or assets.
* ''<code>set</code>'' - A set of values or assets.
  '''Unique'''(''set'')
  '''Unique'''(''set'')
Filters a set by excluding duplicate values.
Filters a set by excluding duplicate values.


* ''<code>set</code>'' - A set of values or assets.
* ''<code>set</code>'' - A set of values or assets.
  '''Each'''(''set'', ''expression'')
  '''Each'''(''set'', ''expression'')
Evaluates an expression for each item in a set.
Evaluates an expression for each item in a set.
Line 113: Line 104:
* ''<code>set</code>'' - A set of values or assets.
* ''<code>set</code>'' - A set of values or assets.
* ''<code>expression</code>'' - Any expression.
* ''<code>expression</code>'' - Any expression.
  '''First'''(''set'')
  '''First'''(''set'')
Takes the first item in a set.
Takes the first item in a set.


* ''<code>set</code>'' - A set of values or assets.
* ''<code>set</code>'' - A set of values or assets.
  '''Last'''(''set'')
  '''Last'''(''set'')
Takes the last item in a set.
Takes the last item in a set.


* ''<code>set</code>'' - A set of values or assets.
* ''<code>set</code>'' - A set of values or assets.
  '''Item'''(''set'', ''position'')
  '''Item'''(''set'', ''position'')
Takes the n-th item in a set.
Takes the n-th item in a set.
Line 129: Line 117:
* ''<code>set</code>'' - A set of values or assets.
* ''<code>set</code>'' - A set of values or assets.
* ''<code>position</code>'' - Position of the desired item.
* ''<code>position</code>'' - Position of the desired item.
  '''List'''(''set'')
  '''List'''(''set'')
Joins a set of values together using commas and the word 'and' between the last two items.
Joins a set of values together using commas and the word 'and' between the last two items.


* ''<code>set</code>'' - A set of values.
* ''<code>set</code>'' - A set of values.
  '''Join'''(''set'', [''separator'' = ", "])
  '''Join'''(''set'', [''separator'' = ", "])
Joins a set of values together with a separator between each item.
Joins a set of values together with a separator between each item.
Line 140: Line 126:
* ''<code>set</code>'' - A set of values.
* ''<code>set</code>'' - A set of values.
* ''<code>separator</code>'' - Separator between each item.
* ''<code>separator</code>'' - Separator between each item.
  '''Lines'''(''set'')
  '''Lines'''(''set'')
Joins a set of values together with each item on a separate line.
Joins a set of values together with each item on a separate line.


* ''<code>set</code>'' - A set of values.
* ''<code>set</code>'' - A set of values.
  '''Paragraphs'''(''set'')
  '''Paragraphs'''(''set'')
Joins a set of values together with each item in a separate paragraph.
Joins a set of values together with each item in a separate paragraph.


* ''<code>set</code>'' - A set of values.
* ''<code>set</code>'' - A set of values.
  '''Count'''(''set'')
  '''Count'''(''set'')
Counts the number of items (including empty values) in a set.
Counts the number of items (including empty values) in a set.


* ''<code>set</code>'' - A set of values or assets.
* ''<code>set</code>'' - A set of values or assets.
  '''CountNotEmpty'''(''set'')
  '''CountNotEmpty'''(''set'')
Counts the number of non-empty values in a set.
Counts the number of non-empty values in a set.
Line 167: Line 149:


* ''<code>word</code>'' - Word.
* ''<code>word</code>'' - Word.
  '''Filter'''(''text'', [''allowed'', ...])
  '''Filter'''(''text'', [''allowed'', ...])
Filters text to allow only specific values.
Filters text to allow only specific values.
Line 173: Line 154:
* ''<code>text</code>'' - Text.
* ''<code>text</code>'' - Text.
* ''<code>allowed</code>'' - Allowed values.
* ''<code>allowed</code>'' - Allowed values.
  '''IsAre'''(''value'')
  '''IsAre'''(''value'')
When there are two or more values, produces 'are'. Otherwise, produces 'is'.
When there are two or more values, produces 'are'. Otherwise, produces 'is'.


* ''<code>value</code>'' - Number or set of values.
* ''<code>value</code>'' - Number or set of values.
  '''Lower'''(''text'')
  '''Lower'''(''text'')
Converts text to 'lowercase'.
Converts text to 'lowercase'.


* ''<code>text</code>'' - Text.
* ''<code>text</code>'' - Text.
  '''Optional'''([''values'', ...])
  '''Optional'''([''values'', ...])
Joins consecutive values together. If any value is empty, the result is also empty.
Joins consecutive values together. If any value is empty, the result is also empty.


* ''<code>values</code>'' - Any value.
* ''<code>values</code>'' - Any value.
  '''Plural'''(''word'')
  '''Plural'''(''word'')
Converts a word to its plural.
Converts a word to its plural.


* ''<code>word</code>'' - Singular form of the word.
* ''<code>word</code>'' - Singular form of the word.
  '''PluralOf'''(''value'', ''word'')
  '''PluralOf'''(''value'', ''word'')
Converts a word to its plural when there are two or more values.
Converts a word to its plural when there are two or more values.
Line 199: Line 175:
* ''<code>value</code>'' - Number or set of values.
* ''<code>value</code>'' - Number or set of values.
* ''<code>word</code>'' - Singular form of the word.
* ''<code>word</code>'' - Singular form of the word.
  '''Possessive'''(''word'')
  '''Possessive'''(''word'')
Adds a possessive apostrophe to a word according to grammar rules.
Adds a possessive apostrophe to a word according to grammar rules.


* ''<code>word</code>'' - Word.
* ''<code>word</code>'' - Word.
  '''Replace'''(''text'', ''find'', ''replace'')
  '''Replace'''(''text'', ''find'', ''replace'')
Replaces all occurrences of a particular word/phrase in the text.
Replaces all occurrences of a particular word/phrase in the text.
Line 211: Line 185:
* ''<code>find</code>'' - Word/phrase to find. Can be a [[wikipedia:Regular_expression|regular expression]].
* ''<code>find</code>'' - Word/phrase to find. Can be a [[wikipedia:Regular_expression|regular expression]].
* ''<code>replace</code>'' - Replacement text. Can include capture groups.
* ''<code>replace</code>'' - Replacement text. Can include capture groups.
  '''ReplaceWith'''(''text'', ''find'', ''replace'')
  '''ReplaceWith'''(''text'', ''find'', ''replace'')
Replaces the entire value if it contains a particular word/phrase.
Replaces the entire value if it contains a particular word/phrase.
Line 218: Line 191:
* ''<code>find</code>'' - Word/phrase to find. Can be a [[wikipedia:Regular_expression|regular expression]].
* ''<code>find</code>'' - Word/phrase to find. Can be a [[wikipedia:Regular_expression|regular expression]].
* ''<code>replace</code>'' - Replacement text. Can include capture groups.
* ''<code>replace</code>'' - Replacement text. Can include capture groups.
  '''Sentence'''(''text'')
  '''Sentence'''(''text'')
Converts text to 'Sentence case'.
Converts text to 'Sentence case'.


* ''<code>text</code>'' - Text.
* ''<code>text</code>'' - Text.
  '''Title'''(''text'')
  '''Title'''(''text'')
Converts text to 'Title Case'.
Converts text to 'Title Case'.


* ''<code>text</code>'' - Text.
* ''<code>text</code>'' - Text.
  '''Upper'''(''text'')
  '''Upper'''(''text'')
Converts text to 'UPPERCASE'.
Converts text to 'UPPERCASE'.
Line 241: Line 211:
* ''<code>number</code>'' - Number.
* ''<code>number</code>'' - Number.
* ''<code>thousands</code>'' - Use thousands separator (Yes/No).
* ''<code>thousands</code>'' - Use thousands separator (Yes/No).
  '''Decimal'''(''number'', [''decimals'' = 2], [''thousands'' = Yes])
  '''Decimal'''(''number'', [''decimals'' = 2], [''thousands'' = Yes])
Formats a decimal number as text.
Formats a decimal number as text.
Line 248: Line 217:
* ''<code>decimals</code>'' - Decimal places.
* ''<code>decimals</code>'' - Decimal places.
* ''<code>thousands</code>'' - Use thousands separator (Yes/No).
* ''<code>thousands</code>'' - Use thousands separator (Yes/No).
  '''Currency'''(''number'', [''decimals'' = 2], [''thousands'' = Yes])
  '''Currency'''(''number'', [''decimals'' = 2], [''thousands'' = Yes])
Formats a currency value as text.
Formats a currency value as text.
Line 255: Line 223:
* ''<code>decimals</code>'' - Decimal places.
* ''<code>decimals</code>'' - Decimal places.
* ''<code>thousands</code>'' - Use thousands separator (Yes/No).
* ''<code>thousands</code>'' - Use thousands separator (Yes/No).
  '''Min'''(''set'')
  '''Min'''(''set'')
Calculates the smallest value in a set.
Calculates the smallest value in a set.


* ''<code>set</code>'' - A set of values.
* ''<code>set</code>'' - A set of values.
  '''Max'''(''set'')
  '''Max'''(''set'')
Calculates the largest value in a set.
Calculates the largest value in a set.


* ''<code>set</code>'' - A set of values.
* ''<code>set</code>'' - A set of values.
  '''Sum'''(''set'')
  '''Sum'''(''set'')
Calculates the sum of the values in a set.
Calculates the sum of the values in a set.


* ''<code>set</code>'' - A set of values.
* ''<code>set</code>'' - A set of values.
  '''Avg'''(''set'')
  '''Avg'''(''set'')
Calculates the average of a set.
Calculates the average of a set.


* ''<code>set</code>'' - A set of values.
* ''<code>set</code>'' - A set of values.
  '''NumberInWords'''(''number'')
  '''NumberInWords'''(''number'')
Converts a number to words.
Converts a number to words.


* ''<code>number</code>'' - Number.
* ''<code>number</code>'' - Number.
  '''CurrencyInWords'''(''number'')
  '''CurrencyInWords'''(''number'')
Converts currency to an amount in words.
Converts currency to an amount in words.


* ''<code>number</code>'' - Number.
* ''<code>number</code>'' - Number.
  '''WordsToNumber'''(''text'')
  '''WordsToNumber'''(''text'')
Converts words to a number.
Converts words to a number.


* ''<code>text</code>'' - Text.
* ''<code>text</code>'' - Text.
  '''WordsToCurrency'''(''text'')
  '''WordsToCurrency'''(''text'')
Converts an amount in words to currency.
Converts an amount in words to currency.


* ''<code>text</code>'' - Text.
* ''<code>text</code>'' - Text.
  '''Ordinal'''(''number'')
  '''Ordinal'''(''number'')
Adds the ordinal suffix (st/nd/rd/th) to a number.
Adds the ordinal suffix (st/nd/rd/th) to a number.
Line 309: Line 268:
* ''<code>yes</code>'' - Value if true.
* ''<code>yes</code>'' - Value if true.
* ''<code>no</code>'' - Value if false.
* ''<code>no</code>'' - Value if false.
  '''IsEmpty'''(''value'')
  '''IsEmpty'''(''value'')
Tests whether a set or value is empty (yes/no).
Tests whether a set or value is empty (yes/no).


* ''<code>value</code>'' - Any value.
* ''<code>value</code>'' - Any value.
  '''IsNotEmpty'''(''value'')
  '''IsNotEmpty'''(''value'')
Tests whether a set or value is not empty (yes/no).
Tests whether a set or value is not empty (yes/no).


* ''<code>value</code>'' - Any value.
* ''<code>value</code>'' - Any value.
  '''AllEmpty'''(''set'')
  '''AllEmpty'''(''set'')
Tests whether all of the values in a set are empty (yes/no).
Tests whether all of the values in a set are empty (yes/no).


* ''<code>set</code>'' - A set of values.
* ''<code>set</code>'' - A set of values.
  '''AllNotEmpty'''(''set'')
  '''AllNotEmpty'''(''set'')
Tests whether all of the values in a set are not empty (yes/no).
Tests whether all of the values in a set are not empty (yes/no).


* ''<code>set</code>'' - A set of values.
* ''<code>set</code>'' - A set of values.
  '''DefaultIfEmpty'''(''value'', [''default'', ...])
  '''DefaultIfEmpty'''(''value'', [''default'', ...])
Provides a default for when a value is empty. Short-hand for: <code>If(IsEmpty(value), default, value)</code>
Provides a default for when a value is empty. Short-hand for: <code>If(IsEmpty(value), default, value)</code>
Line 335: Line 289:
* ''<code>value</code>'' - Any value.
* ''<code>value</code>'' - Any value.
* ''<code>default</code>'' - Value if empty.
* ''<code>default</code>'' - Value if empty.
  '''DefaultIfMultiple'''(''value'', ''default'')
  '''DefaultIfMultiple'''(''value'', ''default'')
Provides a default for when there are two or more values. Short-hand for: <code>If(Count(value) > 1, default, value)</code>
Provides a default for when there are two or more values. Short-hand for: <code>If(Count(value) > 1, default, value)</code>
Line 341: Line 294:
* ''<code>value</code>'' - Any value.
* ''<code>value</code>'' - Any value.
* ''<code>default</code>'' - Value if multiple.
* ''<code>default</code>'' - Value if multiple.
  '''Not'''(''condition'')
  '''Not'''(''condition'')
Reverses the result of a condition (yes/no).
Reverses the result of a condition (yes/no).


* ''<code>condition</code>'' - Yes/no.
* ''<code>condition</code>'' - Yes/no.
  '''Contains'''(''set'', ''value'')
  '''Contains'''(''set'', ''value'')
Tests whether a set contains a particular item (yes/no).
Tests whether a set contains a particular item (yes/no).
Line 352: Line 303:
* ''<code>set</code>'' - A set of values.
* ''<code>set</code>'' - A set of values.
* ''<code>value</code>'' - Any value.
* ''<code>value</code>'' - Any value.
  '''Intersects'''(''set1'', ''set2'')
  '''Intersects'''(''set1'', ''set2'')
Tests whether two sets have any items in common (yes/no).
Tests whether two sets have any items in common (yes/no).
Line 358: Line 308:
* ''<code>set1</code>'' - A set of values.
* ''<code>set1</code>'' - A set of values.
* ''<code>set2</code>'' - A set of values.
* ''<code>set2</code>'' - A set of values.
  '''Case'''(''value'', [''cases'', ...])
  '''Case'''(''value'', [''cases'', ...])
Matches a value against a set of cases. See also: <code>When</code> and <code>Else</code>
Matches a value against a set of cases. See also: <code>When</code> and <code>Else</code>
Line 364: Line 313:
* ''<code>value</code>'' - Value to test.
* ''<code>value</code>'' - Value to test.
* ''<code>cases</code>'' - Cases to match.
* ''<code>cases</code>'' - Cases to match.
  '''When'''(''value'', ''result'')
  '''When'''(''value'', ''result'')
Specifies a result for a particular value in a <code>Case</code> function.
Specifies a result for a particular value in a <code>Case</code> function.
Line 371: Line 319:


* ''<code>result</code>'' - Result if matched.
* ''<code>result</code>'' - Result if matched.
  '''Else'''(''result'')
  '''Else'''(''result'')
Specifies a result for when nothing matches the value in a <code>Case</code> function.
Specifies a result for when nothing matches the value in a <code>Case</code> function.
Line 378: Line 325:


=== Telephone Functions ===
=== Telephone Functions ===
These functions operate on telephone/fax numbers.
  '''Telephone'''(''phone'', [''format''])
  '''Telephone'''(''phone'', [''format''])
Formats a telephone number.
Formats a telephone number.
Line 385: Line 333:


=== Date and Time Functions ===
=== Date and Time Functions ===
These functions operate on date and time values.
  '''Date'''(''date'', ''format'')
  '''Date'''(''date'', ''format'')
Formats a date as text.
Formats a date as text.
Line 390: Line 339:
* ''<code>date</code>'' - Date/time.
* ''<code>date</code>'' - Date/time.
* ''<code>format</code>'' - Date/time format. Can be pre-defined (e.g. <code>DateStyle1</code>) or a custom format
* ''<code>format</code>'' - Date/time format. Can be pre-defined (e.g. <code>DateStyle1</code>) or a custom format
  '''AddMinutes'''(''date'', ''minutes'')
  '''AddMinutes'''(''date'', ''minutes'')
Adds a number of minutes to a date/time value.
Adds a number of minutes to a date/time value.
Line 396: Line 344:
* ''<code>date</code>'' - Date/time.
* ''<code>date</code>'' - Date/time.
* ''<code>minutes</code>'' - Number of minutes. Use negative numbers to subtract.
* ''<code>minutes</code>'' - Number of minutes. Use negative numbers to subtract.
  '''AddHours'''(''date'', ''hours'')
  '''AddHours'''(''date'', ''hours'')
Adds a number of hours to a date/time value.
Adds a number of hours to a date/time value.
Line 402: Line 349:
* ''<code>date</code>'' - Date/time.
* ''<code>date</code>'' - Date/time.
* ''<code>hours</code>'' - Number of hours. Use negative numbers to subtract.
* ''<code>hours</code>'' - Number of hours. Use negative numbers to subtract.
  '''AddDays'''(''date'', ''days'')
  '''AddDays'''(''date'', ''days'')
Adds a number of days to a date/time value.
Adds a number of days to a date/time value.
Line 408: Line 354:
* ''<code>date</code>'' - Date/time.
* ''<code>date</code>'' - Date/time.
* ''<code>days</code>'' - Number of days. Use negative numbers to subtract.
* ''<code>days</code>'' - Number of days. Use negative numbers to subtract.
  '''AddWeekDays'''(''date'', ''days'')
  '''AddWeekDays'''(''date'', ''days'')
Adds a number of weekdays (skipping over weekends) to a date/time value.
Adds a number of weekdays (skipping over weekends) to a date/time value.
Line 414: Line 359:
* ''<code>date</code>'' - Date/time.
* ''<code>date</code>'' - Date/time.
* ''<code>days</code>'' - Number of weekdays. Use negative numbers to subtract.
* ''<code>days</code>'' - Number of weekdays. Use negative numbers to subtract.
  '''AddMonths'''(''date'', ''months'')
  '''AddMonths'''(''date'', ''months'')
Adds a number of months to a date/time value.
Adds a number of months to a date/time value.
Line 420: Line 364:
* ''<code>date</code>'' - Date/time.
* ''<code>date</code>'' - Date/time.
* ''<code>months</code>'' - Number of months. Use negative numbers to subtract.
* ''<code>months</code>'' - Number of months. Use negative numbers to subtract.
  '''AddYears'''(''date'', ''years'')
  '''AddYears'''(''date'', ''years'')
Adds a number of years to a date/time value.
Adds a number of years to a date/time value.
Line 426: Line 369:
* ''<code>date</code>'' - Date/time.
* ''<code>date</code>'' - Date/time.
* ''<code>years</code>'' - Number of years. Use negative numbers to subtract.
* ''<code>years</code>'' - Number of years. Use negative numbers to subtract.
  '''SetTime'''(''date'', [''hour''], [''minute''])
  '''SetTime'''(''date'', [''hour''], [''minute''])
Sets the time component of a date/time value.
Sets the time component of a date/time value.
Line 433: Line 375:
* ''<code>hour</code>'' - Hour (0-23).
* ''<code>hour</code>'' - Hour (0-23).
* ''<code>minute</code>'' - Minute (0-59).
* ''<code>minute</code>'' - Minute (0-59).
  '''SetTimeZone'''(''date'', ''tz'')
  '''SetTimeZone'''(''date'', ''tz'')
Changes the time zone of a date/time value.
Changes the time zone of a date/time value.
Line 439: Line 380:
* ''<code>date</code>'' - Date/time.
* ''<code>date</code>'' - Date/time.
* ''<code>tz</code>'' - Offset (-14 to 14).
* ''<code>tz</code>'' - Offset (-14 to 14).
  '''Day'''(''date'')
  '''Day'''(''date'')
Gets the day component of a date/time value.
Gets the day component of a date/time value.


* ''<code>date</code>'' - Date/time.
* ''<code>date</code>'' - Date/time.
  '''Month'''(''date'')
  '''Month'''(''date'')
Gets the month component of a date/time value.
Gets the month component of a date/time value.


* ''<code>date</code>'' - Date/time.
* ''<code>date</code>'' - Date/time.
  '''Year'''(''date'')
  '''Year'''(''date'')
Gets the year component of a date/time value.
Gets the year component of a date/time value.


* ''<code>date</code>'' - Date/time.
* ''<code>date</code>'' - Date/time.
  '''Hour'''(''date'')
  '''Hour'''(''date'')
Gets the hour component (0-23) of a date/time value.
Gets the hour component (0-23) of a date/time value.


* ''<code>date</code>'' - Date/time.
* ''<code>date</code>'' - Date/time.
  '''Minute'''(''date'')
  '''Minute'''(''date'')
Gets the minute component (0-59) of a date/time value.
Gets the minute component (0-59) of a date/time value.


* ''<code>date</code>'' - Date/time.
* ''<code>date</code>'' - Date/time.
  '''Today'''()
  '''Today'''()
Today's date.
Today's date.
  '''Now'''()
  '''Now'''()
Today's date, including the current time.
Today's date, including the current time.
  '''Days'''(''date1'', ''date2'')
  '''Days'''(''date1'', ''date2'')
Gets the number of days between two date/time values.
Gets the number of days between two date/time values.
Line 474: Line 411:
* ''<code>date1</code>'' - Date/time.
* ''<code>date1</code>'' - Date/time.
* ''<code>date2</code>'' - Date/time.
* ''<code>date2</code>'' - Date/time.
  '''Minutes'''(''date1'', ''date2'')
  '''Minutes'''(''date1'', ''date2'')
Gets the number of minutes between two date/time values.
Gets the number of minutes between two date/time values.
Line 480: Line 416:
* ''<code>date1</code>'' - Date/time.
* ''<code>date1</code>'' - Date/time.
* ''<code>date2</code>'' - Date/time.
* ''<code>date2</code>'' - Date/time.
  '''Years'''(''date1'', ''date2'')
  '''Years'''(''date1'', ''date2'')
Gets the number of years between two date/time values, rounded down.
Gets the number of years between two date/time values, rounded down.
Line 486: Line 421:
* ''<code>date1</code>'' - Date/time.
* ''<code>date1</code>'' - Date/time.
* ''<code>date2</code>'' - Date/time.
* ''<code>date2</code>'' - Date/time.
  '''Age'''(''date'')
  '''Age'''(''date'')
Gets the number of years that have elapsed since a particular date, rounded down.
Gets the number of years that have elapsed since a particular date, rounded down.


* ''<code>date</code>'' - Date/time.
* ''<code>date</code>'' - Date/time.
  '''MakeDate'''(''year'', [''month''], [''day''])
  '''MakeDate'''(''year'', [''month''], [''day''])
Constructs a date value from its year, month and day components.
Constructs a date value from its year, month and day components.
Line 498: Line 431:
* ''<code>month</code>'' - Month number (1-12).
* ''<code>month</code>'' - Month number (1-12).
* ''<code>day</code>'' - Day number (1-31).
* ''<code>day</code>'' - Day number (1-31).
  '''HoursAndMinutes'''(''minutes'')
  '''HoursAndMinutes'''(''minutes'')
Expresses a quantity of minutes in hours and minutes.
Expresses a quantity of minutes in hours and minutes.
Line 518: Line 450:


* ''<code>contact</code>'' - Contact.
* ''<code>contact</code>'' - Contact.
  '''ObjectivePronoun'''(''contact'')
  '''ObjectivePronoun'''(''contact'')
Gets the objective pronoun (him/her/them) for one or more contacts.
Gets the objective pronoun (him/her/them) for one or more contacts.


* ''<code>contact</code>'' - Contact.
* ''<code>contact</code>'' - Contact.
  '''PossessivePronoun'''(''contact'')
  '''PossessivePronoun'''(''contact'')
Gets the subjective pronoun (his/her/their) for one or more contacts.
Gets the subjective pronoun (his/her/their) for one or more contacts.

Revision as of 15:14, 5 December 2023

An expression refers to either:

  • A literal value, such as a number (e.g. 123) or a piece of text (e.g. "Hello world"); or
  • A group of words or symbols that describes how to obtain the above (e.g. Contact.ShortName).

ContactsLaw allows the use of expressions in document templates, automatic descriptions for document types and workgroups, as well as various other areas. This is the basis for generating content that draws upon data from contacts, matters and so on.

Types of Expressions

Type Example Expressions Example Results Remarks
Literal 123
"Hello world"
123
"Hello world"
To include double-quote characters inside a string literal, prefix with a backslash (i.e. \").
Asset Contact
Matter
Address
Assets do not produce any result directly, but can be used in conjunction with some functions, e.g. Count(Contact)might evaluate to 3 if the asset represented three parties on a matter.
Property Contact.ShortName
Contact.Gender
Matter.Code
Address.Country
"John Smith"
"Male"
"678-1"
"Australia"
Properties belong to assets. If an asset represents multiple contacts/matters/etc then the expression produces multiple results. Unless you specify otherwise, multiple results appear as a list of values, separated by commas (e.g. "John Smith, Fred Baker, Jane Doe").
Operator +, -, *, /

=, <>, <, >

Arithmetic operators compute numbers. Conditional operators produce either Yes or No.
Function IsNotEmpty(Contact.LastName)
Plural("word")
If(Count(Contact) < 3, "friends", "acquaintances")
Yes
"words"
"acquaintances"
Functions compute a result based on their arguments (inputs). Function calls can be nested within each other.
Constant NewLine
NewParagraph
"␊"
"␍"
Constant expressions provide a short-hand way of inserting frequently-used values, as well as text that cannot normally be entered directly (e.g. tab spaces).
Repetition current.ShortName
current.Country
index
"John Smith"
"Australia"
3
These expressions can only be used inside a repetition block, where they correspond to either the current instance of the repeated asset or a number indicating how many times the block has been repeated so far.

Function Reference

The information in this section relates to a pre-release version of ContactsLaw and is not representative of the final product.

Set Functions

These functions operate on sets of values.

Set([values, ...])

Creates a set from one or more values.

  • values - Values.
Range(set, [start = 1], [count])

Creates a subset of a set.

  • set - A set of values or assets.
  • position - Starting position.
  • count - Number of items (maximum) to include.
Union(set1, set2)

Gets the union of two sets.

  • set1 - A set of values or assets.
  • set2 - A set of values or assets.
Except(set, excluded)

Gets the items in a set which do not appear in some other set.

  • set - A set of values or assets.
  • excluded - Values/assets to exclude.
Intersection(set1, set2)

Gets the intersection of two sets.

  • set1 - A set of values or assets.
  • set2 - A set of values or assets.
Sort(set, [smart = Yes])

Sorts the items in a set.

  • set - A set of values or assets.
  • smart - Whether to use natural language sorting rules.
RSort(set, [smart = Yes])

Sorts the items in a set in reverse order.

  • set - A set of values or assets.
  • smart - Whether to use natural language sorting rules.
NotEmpty(set)

Filters a set by excluding empty values.

  • set - A set of values or assets.
Unique(set)

Filters a set by excluding duplicate values.

  • set - A set of values or assets.
Each(set, expression)

Evaluates an expression for each item in a set.

  • set - A set of values or assets.
  • expression - Any expression.
First(set)

Takes the first item in a set.

  • set - A set of values or assets.
Last(set)

Takes the last item in a set.

  • set - A set of values or assets.
Item(set, position)

Takes the n-th item in a set.

  • set - A set of values or assets.
  • position - Position of the desired item.
List(set)

Joins a set of values together using commas and the word 'and' between the last two items.

  • set - A set of values.
Join(set, [separator = ", "])

Joins a set of values together with a separator between each item.

  • set - A set of values.
  • separator - Separator between each item.
Lines(set)

Joins a set of values together with each item on a separate line.

  • set - A set of values.
Paragraphs(set)

Joins a set of values together with each item in a separate paragraph.

  • set - A set of values.
Count(set)

Counts the number of items (including empty values) in a set.

  • set - A set of values or assets.
CountNotEmpty(set)

Counts the number of non-empty values in a set.

  • set - A set of values or assets.

Text Functions

These functions operate on text.

An(word)

Produces 'a' or 'an' according to grammar rules for a particular word.

  • word - Word.
Filter(text, [allowed, ...])

Filters text to allow only specific values.

  • text - Text.
  • allowed - Allowed values.
IsAre(value)

When there are two or more values, produces 'are'. Otherwise, produces 'is'.

  • value - Number or set of values.
Lower(text)

Converts text to 'lowercase'.

  • text - Text.
Optional([values, ...])

Joins consecutive values together. If any value is empty, the result is also empty.

  • values - Any value.
Plural(word)

Converts a word to its plural.

  • word - Singular form of the word.
PluralOf(value, word)

Converts a word to its plural when there are two or more values.

  • value - Number or set of values.
  • word - Singular form of the word.
Possessive(word)

Adds a possessive apostrophe to a word according to grammar rules.

  • word - Word.
Replace(text, find, replace)

Replaces all occurrences of a particular word/phrase in the text.

  • text - Subject text.
  • find - Word/phrase to find. Can be a regular expression.
  • replace - Replacement text. Can include capture groups.
ReplaceWith(text, find, replace)

Replaces the entire value if it contains a particular word/phrase.

  • text - Subject text.
  • find - Word/phrase to find. Can be a regular expression.
  • replace - Replacement text. Can include capture groups.
Sentence(text)

Converts text to 'Sentence case'.

  • text - Text.
Title(text)

Converts text to 'Title Case'.

  • text - Text.
Upper(text)

Converts text to 'UPPERCASE'.

  • text - Text.

Number Functions

These functions operate on numbers.

Number(number, [thousands = Yes])

Formats a whole number as text.

  • number - Number.
  • thousands - Use thousands separator (Yes/No).
Decimal(number, [decimals = 2], [thousands = Yes])

Formats a decimal number as text.

  • number - Number.
  • decimals - Decimal places.
  • thousands - Use thousands separator (Yes/No).
Currency(number, [decimals = 2], [thousands = Yes])

Formats a currency value as text.

  • number - Number.
  • decimals - Decimal places.
  • thousands - Use thousands separator (Yes/No).
Min(set)

Calculates the smallest value in a set.

  • set - A set of values.
Max(set)

Calculates the largest value in a set.

  • set - A set of values.
Sum(set)

Calculates the sum of the values in a set.

  • set - A set of values.
Avg(set)

Calculates the average of a set.

  • set - A set of values.
NumberInWords(number)

Converts a number to words.

  • number - Number.
CurrencyInWords(number)

Converts currency to an amount in words.

  • number - Number.
WordsToNumber(text)

Converts words to a number.

  • text - Text.
WordsToCurrency(text)

Converts an amount in words to currency.

  • text - Text.
Ordinal(number)

Adds the ordinal suffix (st/nd/rd/th) to a number.

  • number - Number.

Conditional Functions

These functions are used to make decisions.

If(condition, yes, [no])

Tests a condition and gives a different value depending on the result.

  • condition - Yes/no.
  • yes - Value if true.
  • no - Value if false.
IsEmpty(value)

Tests whether a set or value is empty (yes/no).

  • value - Any value.
IsNotEmpty(value)

Tests whether a set or value is not empty (yes/no).

  • value - Any value.
AllEmpty(set)

Tests whether all of the values in a set are empty (yes/no).

  • set - A set of values.
AllNotEmpty(set)

Tests whether all of the values in a set are not empty (yes/no).

  • set - A set of values.
DefaultIfEmpty(value, [default, ...])

Provides a default for when a value is empty. Short-hand for: If(IsEmpty(value), default, value)

  • value - Any value.
  • default - Value if empty.
DefaultIfMultiple(value, default)

Provides a default for when there are two or more values. Short-hand for: If(Count(value) > 1, default, value)

  • value - Any value.
  • default - Value if multiple.
Not(condition)

Reverses the result of a condition (yes/no).

  • condition - Yes/no.
Contains(set, value)

Tests whether a set contains a particular item (yes/no).

  • set - A set of values.
  • value - Any value.
Intersects(set1, set2)

Tests whether two sets have any items in common (yes/no).

  • set1 - A set of values.
  • set2 - A set of values.
Case(value, [cases, ...])

Matches a value against a set of cases. See also: When and Else

  • value - Value to test.
  • cases - Cases to match.
When(value, result)

Specifies a result for a particular value in a Case function.

  • value - Value to match.
  • result - Result if matched.
Else(result)

Specifies a result for when nothing matches the value in a Case function.

  • result - Value if no match.

Telephone Functions

These functions operate on telephone/fax numbers.

Telephone(phone, [format])

Formats a telephone number.

  • phone - Telephone number.
  • format - Format (Extension, Local, Domestic or International).

Date and Time Functions

These functions operate on date and time values.

Date(date, format)

Formats a date as text.

  • date - Date/time.
  • format - Date/time format. Can be pre-defined (e.g. DateStyle1) or a custom format
AddMinutes(date, minutes)

Adds a number of minutes to a date/time value.

  • date - Date/time.
  • minutes - Number of minutes. Use negative numbers to subtract.
AddHours(date, hours)

Adds a number of hours to a date/time value.

  • date - Date/time.
  • hours - Number of hours. Use negative numbers to subtract.
AddDays(date, days)

Adds a number of days to a date/time value.

  • date - Date/time.
  • days - Number of days. Use negative numbers to subtract.
AddWeekDays(date, days)

Adds a number of weekdays (skipping over weekends) to a date/time value.

  • date - Date/time.
  • days - Number of weekdays. Use negative numbers to subtract.
AddMonths(date, months)

Adds a number of months to a date/time value.

  • date - Date/time.
  • months - Number of months. Use negative numbers to subtract.
AddYears(date, years)

Adds a number of years to a date/time value.

  • date - Date/time.
  • years - Number of years. Use negative numbers to subtract.
SetTime(date, [hour], [minute])

Sets the time component of a date/time value.

  • date - Date/time.
  • hour - Hour (0-23).
  • minute - Minute (0-59).
SetTimeZone(date, tz)

Changes the time zone of a date/time value.

  • date - Date/time.
  • tz - Offset (-14 to 14).
Day(date)

Gets the day component of a date/time value.

  • date - Date/time.
Month(date)

Gets the month component of a date/time value.

  • date - Date/time.
Year(date)

Gets the year component of a date/time value.

  • date - Date/time.
Hour(date)

Gets the hour component (0-23) of a date/time value.

  • date - Date/time.
Minute(date)

Gets the minute component (0-59) of a date/time value.

  • date - Date/time.
Today()

Today's date.

Now()

Today's date, including the current time.

Days(date1, date2)

Gets the number of days between two date/time values.

  • date1 - Date/time.
  • date2 - Date/time.
Minutes(date1, date2)

Gets the number of minutes between two date/time values.

  • date1 - Date/time.
  • date2 - Date/time.
Years(date1, date2)

Gets the number of years between two date/time values, rounded down.

  • date1 - Date/time.
  • date2 - Date/time.
Age(date)

Gets the number of years that have elapsed since a particular date, rounded down.

  • date - Date/time.
MakeDate(year, [month], [day])

Constructs a date value from its year, month and day components.

  • year - Year number.
  • month - Month number (1-12).
  • day - Day number (1-31).
HoursAndMinutes(minutes)

Expresses a quantity of minutes in hours and minutes.

  • minutes - Number of minutes.

Tag Functions

These functions operate on tags.

HasTag(item, tag)

Determines whether an item has a particular tag (yes/no).

  • item - A taggable item (e.g. contact).
  • tag - Name of the tag.

Contact Functions

These functions operate on contact assets.

SubjectivePronoun(contact)

Gets the subjective pronoun (he/she/they) for one or more contacts.

  • contact - Contact.
ObjectivePronoun(contact)

Gets the objective pronoun (him/her/them) for one or more contacts.

  • contact - Contact.
PossessivePronoun(contact)

Gets the subjective pronoun (his/her/their) for one or more contacts.

  • contact - Contact.

Special Purpose Functions

Resource(type, id)

Creates a reference to a subscriber-specific resource in ContactsLaw.

  • type - Resource type.
  • id - Resource identifier.