hi i could not find a function in Dataweave to split a string by a specified length .
The string i need to split is
ThisistheStringineedtoSplit
Expected out put is an array with all the substrings
payload.splitBy(sizeOf(payload)/10)
[ThisistheString,ineedtoSplit]