Skip to content

Commit ac0cf5c

Browse files
authored
Update data-flow-conversion-functions.md
1 parent 51fbce1 commit ac0cf5c

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

articles/data-factory/data-flow-conversion-functions.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ ms.service: data-factory
88
ms.subservice: data-flows
99
ms.custom: synapse
1010
ms.topic: conceptual
11-
ms.date: 08/03/2022
11+
ms.date: 10/19/2022
1212
---
1313

1414
# Conversion functions in mapping data flow
@@ -25,6 +25,10 @@ Conversion functions are used to convert data and test for data types
2525

2626
| Conversion function | Task |
2727
|----|----|
28+
| [ascii](data-flow-expressions-usage.md#ascii) | Returns the numeric value of the input character. If the input string has more than one character, the numeric value of the first character is returned|
29+
| [char](data-flow-expressions-usage.md#char) | Returns the ascii character represented by the input number. If number is greater than 256, the result is equivalent to char(number % 256)|
30+
| [decode](data-flow-expressions-usage.md#decode) | Decodes the encoded input data into a string based on the given charset. A second (optional) argument can be used to specify which charset to use - 'US-ASCII', 'ISO-8859-1', 'UTF-8' (default), 'UTF-16BE', 'UTF-16LE', 'UTF-16'|
31+
| [encode](data-flow-expressions-usage.md#encode) | Encodes the input string data into binary based on a charset. A second (optional) argument can be used to specify which charset to use - 'US-ASCII', 'ISO-8859-1', 'UTF-8' (default), 'UTF-16BE', 'UTF-16LE', 'UTF-16'|
2832
| [isBitSet](data-flow-expressions-usage.md#isBitSet) | Checks if a bit position is set in this bitset|
2933
| [setBitSet](data-flow-expressions-usage.md#setBitSet) | Sets bit positions in this bitset|
3034
| [isBoolean](data-flow-expressions-usage.md#isBoolean) | Checks if the string value is a boolean value according to the rules of ``toBoolean()``|

0 commit comments

Comments
 (0)