@@ -5,7 +5,7 @@ services: logic-apps
5
5
ms.suite : integration
6
6
ms.reviewer : klam, logicappspm
7
7
ms.topic : conceptual
8
- ms.date : 08/23/2019
8
+ ms.date : 02/03/2020
9
9
---
10
10
11
11
# Reference guide to using functions in expressions for Azure Logic Apps and Power Automate
@@ -2112,31 +2112,31 @@ formatNumber(<number>, <format>, <locale>?)
2112
2112
Suppose that you want to format the number ` 1234567890 ` . This example formats that number as the string "1,234,567,890.00".
2113
2113
2114
2114
```
2115
- formatNumber(1234567890, " {0:0,0.00}", " en-us" )
2115
+ formatNumber(1234567890, ' {0:0,0.00}', ' en-us' )
2116
2116
```
2117
2117
2118
2118
* Example 2"
2119
2119
2120
2120
Suppose that you want to format the number ` 1234567890 ` . This example formats the number to the string "1.234.567.890,00".
2121
2121
2122
2122
```
2123
- formatNumber(1234567890, " {0:0,0.00}", " is-is" )
2123
+ formatNumber(1234567890, ' {0:0,0.00}', ' is-is' )
2124
2124
```
2125
2125
2126
2126
* Example 3*
2127
2127
2128
2128
Suppose that you want to format the number ` 17.35 ` . This example formats the number to the string "$17.35".
2129
2129
2130
2130
```
2131
- formatNumber(17.36, "{0:C2}" )
2131
+ formatNumber(17.36, 'C2' )
2132
2132
```
2133
2133
2134
2134
* Example 4*
2135
2135
2136
2136
Suppose that you want to format the number ` 17.35 ` . This example formats the number to the string "17,35 kr".
2137
2137
2138
2138
```
2139
- formatNumber(17.36, "{0:C2}", " is-is" )
2139
+ formatNumber(17.36, 'C2', ' is-is' )
2140
2140
```
2141
2141
2142
2142
<a name =" getFutureTime " ></a >
0 commit comments