v.20.1New Feature

Added JSONExtractArrayRaw Function for Unparsed JSON Elements

Added function JSONExtractArrayRaw which returns an array on unparsed json array elements from JSON string. #8081 (Oleg Matrokhin)
Added the function JSONExtractArrayRaw which returns an array of unparsed JSON array elements extracted from a JSON string.

Why it matters

This feature enables users to efficiently extract raw JSON elements from JSON arrays without parsing each element individually. It provides a way to retrieve the array elements as raw JSON, which can be useful for further processing or when full parsing is unnecessary.

How to use it

Use the function JSONExtractArrayRaw by passing a JSON string as the argument. The function will return an array containing unparsed JSON elements extracted from the input JSON array, allowing you to manipulate or analyze the raw JSON elements directly.