Placeholder Splitting
Splitting allows you to break down placeholders into multiple parts and use them separately. You can split by number of letters, before specific characters or words, numeric comparison, and regex.
Letter Splitting
Splits a placeholder into fixed-length parts.
Example Input: "Junkeh"
Output:
{part_1} = "Ju"
{part_2} = "nk"
{part_3} = "eh"
To use the placeholder to display the splits do this: %easyph_<custom>_<outputname>%
so for this example %easyph_split_example_first%
Will output: First part: Ju
Number Comparison Splitting
Compares a numeric value to a threshold and outputs based on whether it is greater or less than the value.
Example Input: "12"
Output: <gold>Level is above 10!
Example Input: "8"
Output: <gray>Level is below or equal to 10!
To be honest im not 100% this feature works but let me know.
Word Splitting
Splits a placeholder before a specific character or word.
Example Input: "Junkeh_Dev"
Output:
{part_1} = "Junkeh"
{part_2} = "Dev"
Regex Splitting
Splits a placeholder using regex patterns.
Example Input: "dpg32sasd"
Output:
{part_1} = "dpg"
{part_2} = "sasd"
Last updated