
2020-09
20
OHV110-F228-R2
Configuration
DELETE_FROM_POSITION_x_ON_y_CHARS
Deletes part of the code. x refers to the position from which y characters are removed, where x
= 0 represents the first character of the code.
Example: DELETE_FROM_POSITION_0_ON_ _CHARS deletes characters 1 to 5.
DELETE_SUBSTRING_abc
Deletes the data string abc from the code. f the data string occurs multiple times, only the first
occurrence of the data string is deleted.
DELETE_LAST_x_CHARS
Deletes the last x characters of the code.
Example: DELETE_LAST_4_CHARS deletes the last four characters.
DELETE_ALL_CHARS_BEFORE_abc
Deletes all characters of the code that appear before a data string abc. f there are multiple
occurrences of the data string abc, only the characters that appear before the first occurrence
are deleted.
DELETE_ALL_CHARS_AFTER_abc
Deletes all characters of the code that follow a data string abc. f there are multiple occurrences
of the data string abc, all characters after the first occurrence are deleted.
INSERT_abc_AT_POSITION_x
Adds the data string abc at position x, where x = 0 represents the position before the first char-
acter of the code.
INSERT_abc_AFTER_def
Adds the data string abc to the data string def. f the data string def appears multiple times, the
data string abc is appended to the first occurrence. f the data string def does not appear, no
characters are inserted.
APPEND_STRING_abc
Appends the data string abc to the code.
IF_GOODREAD_OUTPUT_abc
Returns the data string abc if a code has been read successfully.
REPLACE_STRING_abc_WITH_def
Replaces the data string abc with the data string def. f the data string abc occurs multiple
times, only the first occurrence is replaced.
REPLACE_ALL_abc_AFTER_POSITION_x_WITH_def
Replaces the data string abc with the data string def after position x. f the data string abc
appears after position x multiple times, all occurrences are replaced.
IF_CODE_CONTAINS_abc_OUTPUT_def
Returns the data string def if the data string abc appears in the code. f the data string abc
appears multiple times, the data string def is returned only once.
APPEND_FROM_ORIGINAL_ALL_CHARS_AFTER_abc
All characters that follow the data string abc in the read code are appended to the output. This
rule applies directly to the read code and is independent of any other rules already applied to
the code. f the data string abc appears multiple times, all characters from the first occurrence
are appended and subsequent occurrences of the data string abc are deleted. f the code does
not contain the data string abc, no characters are appended.
APPEND_FROM_ORIGINAL_x_CHARS_AFTER_abc
Appends x characters that follow the data string abc in the read code to the output. This rule
applies directly to the read code and is independent of any other rules already applied to the
code. f the data string abc appears multiple times, x characters from the first occurrence are
appended and subsequent occurrences of the data string abc are deleted. f the code does not
contain the data string abc, no characters are appended.
Sour e Code
You can edit the source code for the script in the source code area. You can use the Insert
spe ial hara ters button to insert certain special characters.