Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 13 Next »

Lookup allows you to find an element which matches (or is close) an argument you pass to the lookup function. This API will return the index of the value if it has found a match, otherwise it will return 0.

Parameters
  1. Search argument
  2. Array
  3. Start index (OR resulting indicators object)
  4. Resulting indicators (can be null)
  5. Search type - "LE", "LT". "GE", "GT". Can be null.
Return Value

Function will return 0 if no matching element has been found, otherwise it will return the element index.

Example
  pjs.define("i", { type: 'integer', length: 3, decimals: 0 });  
  pjs.define("SRCHWD", { type: 'packed decimal', length: 2, decimals: 0 });
  pjs.define("arr", { type: 'char', length: 15, dim: 10 });

  arr[1] = 'Cornwall';
  arr[2] = 'kingston';
  arr[3] = 'London';
  arr[4] = 'Paris';
  arr[5] = 'Scarborough';
  arr[6] = 'York';
  arr[7] = 'Columbus';
  arr[8] = 'Dayton';
  arr[9] = 'centerville';
  arr[10] = 'vasad';

  SRCHWD = arr[6];

  pjs.lookup(SRCHWD, arr, i, { equal: 26 });


RPG Equivalent

%LOOKUP(), LOOKUP

  • No labels