Back Previous Next


Linguist basic package - remove

Syntax:

   remove item {key} of {hashtable}
   remove all {hashtable}
   remove the first word/line of {stringholder}

Keyword handler:

   net.eclecity.linguist.basic.keyword.BasicKRemove.class

Runtime handler(s):

   net.eclecity.linguist.basic.handler.BasicHRemove.class

Function:

The first form removes the item having the specified key from the hashtable. The key is a string value. See also put.

The second form removes everything from the table.

The third form is useful for parsers; it removes the first word or line from a string.

Example(s):

   remove item "ABC123" of MyHashtable
   remove all MyHashtable
   remove the first word of Buffer


Back Previous Next