ASTER::ACTION::JSON::Create 1D-Array With the Result of Regex Partial Submatches

関連 : Create 1D-Array With the Result of Regex Exact Submatches


パラメータ.1 :: JSON Pointer

JSON Pointer を指定します。

e.g.

  "/rgxExactSubmatches"
  

JSON データのルート下に "rgxExactSubmatches" というキー名で一次元配列を作成した例です。

以下が Submatches を Push する以前の JSON データ。

  {
    "rgxExactSubmatches":[]
}
  

"two","one","three" というサブマッチ結果が得られている場合、配列には以下内容が代入されます。

e.g.

  {
    "rgxExactSubmatches":["two","one","three"]
}
  

ASTER :: JSON :: Create 1D-Array with the result of REGEX Partial submatches.


注意点.1

正規表現で完全一致検索を実行した結果、正規表現で部分一致検索を実行した結果、それぞれ異なる保存領域にサブマッチは保存されています。

この命令は部分一致検索のサブマッチ結果を得る命令です。