Create an Array with the Submatch of RGX Partial
using JSON Pointer..
ASTER::ACTION::JSON::Create an Array, Submatch of Regex Partial Match
Export submatches obtained from partial match search in regular expressions to an array.
Parameter
JSON Pointer: Specify the insertion position of the array-type data.
If the key name is duplicated, it will be overwritten.
Create an array under the root with the key name "test", example of JSON Pointer:
"/test"Result of export to JSON Array
If the submatch results are "two","one","three":
{
"test":[
"two",
"one",
"three"
]
}Notes
Regular expression exact match searches and partial match searches submatches are stored in separate areas.