Example: lr_zip and lr_unzip
In this example, lr_zip is used to compress and store the string in a parameter. lr_zip is called twice to show that the order of the parameters is not important.
lr_unzip is then called to uncompress the data.
lr_save_string("This is the text I want to zip.", "param1"); lr_zip("target=param2", "source=param1"); lr_zip("source=param1", "target=param3"); lr_unzip("source=param3", "target=param4");