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 9 Next »

pjs.moveArray() moves elements from and/or to an array. If padding is specified, it will clear out the remaining characters and elements in the target after the move is complete.

Parameters
  1. From array name
  2. From array index - 1 or higher, start from this index when working with the source.
  3. Target array name
  4. Target array index - 1 or higher, start from this index when working with the target.
  5. Padding (optional Boolean) - if passed in as true, the target will be padded.
Example
Example 1: array -> array
pjs.define("ARRX", { type: 'char', length: 5, dim: 5, initValue: 'Hi' });
pjs.define("ARRY", { type: 'char', length: 5, dim: 10, initValue: 'Test' });

pjs.MoveArray(ARRX, 1, ARRY, 1, false);

return ARRY;
//'Hi   ','Hi   ','Hi   ','Hi   ','Hi   ','Test ','Test ','Test ','Test ','Test '
Example 2: char -> array
pjs.define("CHAR", { type: 'char', length: 5, initValue: 'Hello' });
pjs.define("ARRY", { type: 'char', length: 1, dim: 10 });

pjs.MoveArray(CHAR, 1, ARRY, 1);

return ARRY;
//'H','e','l','l','o',' ',' ',' ',' ',' '
Example 3: array -> array (with source index)

In this example, we are moving ARRX into ARRY. Since the second parameter is 3, this means it will start the move from the 3rd element (skipping the first two) which results in only 3 elements being moved.

pjs.define("ARRX", { type: 'char', length: 5, dim: 5, initValue: 'Test' });
pjs.define("ARRY", { type: 'char', length: 5, dim: 10, initValue: '' });

pjs.MoveArray(ARRX, 3, ARRY, "1");

return ARRY;
// 'Test ','Test ','Test ','     ','     ','     ','     ','     ','     ','     '
Example 4: array -> array (with target index)

This example shows a value of 6 on the 4th parameter. Because the 4th parameter indicates where the index is going to start on the target (ARRY), it's going to move elements into this array starting from the 6th element.

pjs.define("ARRX", { type: 'char', length: 5, dim: 5, initValue: 'ABCD' });
pjs.define("ARRY", { type: 'char', length: 5, dim: 10, initValue: 'EFGH' });

pjs.MoveArray(ARRX, 1, ARRY, 6);

return ARRY;
//'EFGH ','EFGH ','EFGH ','EFGH ','EFGH ','ABCD ','ABCD ','ABCD ','ABCD ','ABCD '
Example 5: character const -> flags array

In this example, we're going to move a const ('111111') into flags, starting at element 71. This means elements 71, through to 76 in flags will be set to true. (since 1 is true, 0 would be false)

pjs.define("someInd", { type: 'boolean', initValue: true });

pjs.MoveArray('111111', 1, flags, 71);

return flags[72];
//true
Example 6: array -> character field
pjs.define("ARRX", { type: 'char', length: 2, dim: 5, initValue: 'AB' });
pjs.define("CHAR", { type: 'char', length: 10 });

pjs.MoveArray(ARRX, 1, CHAR, 1);

return CHAR;
//'ABABABABAB'

 

RPG Equivalent

MOVEA

  • No labels