Expand description

This crate provides the ability to expand/substitute variables in strings similar to envsubst and Bash parameter expansion.

There is a single public struct (not counting errors and builders), Xpanda, which in turn contains a single method: expand. The expand method takes a string by reference and returns a copy of it with all variables expanded/substituted according to some patterns.

Structs

Xpanda substitutes the values of variables in strings similar to envsubst and Bash parameter expansion.