90301 / TextReplace

This is a utility for programmatic text replacement.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Log Processor If Statements

90301 opened this issue · comments

Log Processor Support for logic.

if ( CONDITION , DO_WHEN_TRUE , DO_WHEN_FALSE (optional) )

Conditions

Text Contains

ex:

if ( textContains(DESK) , skip(1) )

Operations

This can be any single programNode.

Skip

Skip the next X operations

Nesting Support

because nesting would have to be possible, this may be a bit more involved and will require arg processing that can handle nesting.

Advanced Arg Processing

Requires Character by Character processing, keeping count of if this is inside another parenthesis.
also should include support for escaping characters.