We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e2d420 commit 683f76cCopy full SHA for 683f76c
COSQuickRef.md
@@ -90,6 +90,7 @@ A list of some common ObjectScript expressions
90
| Display string after replacing characters | `Write $translate(string, searchChars, replaceChars)` |
91
| Build a list | `Set listString = $listbuild(list items, separated by comma)` |
92
| Retrieve an item from a list | `Set variable = $list(listString, position)` |
93
+| Retrieves elements sequentially from a list | `Set pointerToNextElement = 0`<br> `While = $ListNext(listString, pointerToNextElement, value) {}` |
94
| Put item into list string | `Set $list(listString, position) = substring` |
95
| Display the length of a list | `Write $listlength(listString)` |
96
| Search a value in a list | `Write $listfind(listString, value)` |
0 commit comments