Published on : August 03, 2020
Title : Modifiers
Purpose : Input Manipulation
String: [module.set str_a=’ I Passed the test’/]
Usage 1 : String in lower case

Modifier : m.lower Example : [module.str_a m.lower=’yes’ /] Output : i passed the test

Usage 2 : String in Upper case

Modifier : m.upper Example : [module.str_a m.upper=’yes’ /] Output : I PASSED THE TEST

Usage 3 : trim

Modifier : m.trim Example : [module.str_a m.trim=’yes’ /] Description : Removed space from both side Output : I PASSED THE TEST

Usage 4 : left trim

Modifier : m.ltrim Example : [module.str_a m.ltrim=’yes’ /] Description : Removed space from left side Output : I PASSED THE TEST