interpolate
import static io.github.boykaframework.utils.StringUtils.interpolate; . . . System.out.println (interpolate ("${env:USER_NAME}")); . . . OR . . . Map<String, String> values = new HashMap<> (); values.put ("USER_NAME", "wasiq"); System.out.println (interpolate ("${USER_NAME}", values));
info
Was this page helpful?