resolvePlaceholders abstract method

String resolvePlaceholders(
  1. String text
)

Resolves #{...} placeholders in the input text using available properties.

If a placeholder has no matching property, it is left unchanged.

Example:

// If app.name=JetLeaf
resolver.resolvePlaceholders('Welcome to #{app.name}');
// → "Welcome to JetLeaf"

Implementation

String resolvePlaceholders(String text);