Merge pull request #86 from langgenius/doc-remove

docs: add "remove"
This commit is contained in:
Jing Y.
2025-05-15 22:23:39 +08:00
committed by GitHub
3 changed files with 6 additions and 2 deletions

View File

@@ -190,6 +190,8 @@ The data type of the target variable determines its operation method. Below are
• **Append**: Add a new element to the array in the target variable.
• **Extend**: Add a new array to the target variable, effectively adding multiple elements at once.
• **Remove**: Remove an element from the array, with options to remove from the first position (First) or the last position (Last), with the default being “First”.
{/*
Contributing Section

View File

@@ -164,9 +164,10 @@ def main(arg1: list) -> str:
**書き込みモード:**
* Overwrite (上書き): ソース変数の内容を対象の会話変数に上書きします
* Overwrite (上書き)ソース変数の内容を対象の会話変数に上書きします
* Append (追加):指定された変数が配列型の場合に使用します
* Clear (クリア): 対象の会話変数内の内容をクリアします
* Clear (クリア)対象の会話変数内の内容をクリアします
* Remove削除配列から要素を削除します。先頭から削除Firstまたは末尾から削除Lastを選択できます。デフォルトは「先頭から削除」です
{/*
Contributing Section

View File

@@ -190,6 +190,7 @@ def main(arg1: list) -> str:
* **清空**,清空所选中变量中的内容
* **追加**,在目标的数组变量中添加一个新的元素
* **扩展**,在目标的数组变量中添加新的数组,即一次性添加多个元素
* **移除**从数组中移除元素可选择从头部移除First或尾部移除Last默认为“头部移除”
{/*
Contributing Section