%dw 2.0
import * from dw::core::Strings
output application/json
---
{
"charCodeAt" : charCodeAt("MuleSoft", 1)
}
DataWeave
charCodeAt
charCodeAt(content: String, position: Number): Number
Returns the Unicode for a character at the specified index.
This function fails if the index is invalid.
Parameters
Name | Description |
---|---|
|
The input string. |
|
The index (a |
Example
This example returns Unicode for the "u" at index 1
in "MuleSoft".
Source
Output
{ "charCodeAt": 117 }
JSON
charCodeAt(content: Null, position: Any): Null
Helper function that enables charCodeAt
to work with a null
value.
Introduced in DataWeave version 2.4.0.