Skip to content

Commit e7f4af7

Browse files
committed
Fix typo: occurences -> occurrences
1 parent d2a26a8 commit e7f4af7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

articles/data-factory/data-flow-expressions-usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2285,7 +2285,7 @@ ___
22852285
<a name="substringIndex" ></a>
22862286

22872287
### <code>substringIndex</code>
2288-
<code><b>substringIndex(<i>&lt;string to subset&gt;</i> : string, <i>&lt;delimiter&gt;</i> : string, &lt;count of delimiter occurences&gt;</i> : integral]) => string</b></code><br/><br/>
2288+
<code><b>substringIndex(<i>&lt;string to subset&gt;</i> : string, <i>&lt;delimiter&gt;</i> : string, &lt;count of delimiter occurrences&gt;</i> : integral]) => string</b></code><br/><br/>
22892289
Extracts the substring before `count` occurrences of the delimiter. If `count` is positive, everything to the left of the final delimiter (counting from the left) is returned. If `count` is negative, everything to the right of the final delimiter (counting from the right) is returned.
22902290
* ``substringIndex('111-222-333', '-', 1) -> '111'``
22912291
* ``substringIndex('111-222-333', '-', 2) -> '111-222'``

0 commit comments

Comments
 (0)