declex icon indicating copy to clipboard operation
declex copied to clipboard

Formatted Syntax with formatted expressions (C-like)

Open smaugho opened this issue 7 years ago • 0 comments

Formatted Syntax can be improved using formatted expressions (C-like), for this, the code will be "encapsulated" with its modifier, ex:

"The time is: {%02d: hour}:{%02d: minute}"

This will help to construct more complex strings with the Formatted Syntax.

The expression above will be replaced with:

"The time is: " + String.format("%02d", hour) + ":" + String.format("%02d", minute);

smaugho avatar May 04 '17 14:05 smaugho