sS format3_curly(S pat, S... args) { if (args.length == 0) return pat; L<S> tok = javaTok(pat); int argidx = 0; for (int i = 1; i < tok.size(); i += 2) if (tok.get(i).equals("*")) tok.set(i, curly(argidx < args.length ? args[argidx++] : "null")); return join(tok); }
Began life as a copy of #1001250
download show line numbers debug dex old transpilations
Travelled to 8 computer(s): bhatertpkbcr, cfunsshuasjs, gwrvuhgaqvyk, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt
No comments. add comment
Snippet ID: | #1021066 |
Snippet name: | format3_curly |
Eternal ID of this version: | #1021066/1 |
Text MD5: | 48238b1e5bacfaea80a3a2cb096d7c57 |
Author: | stefan |
Category: | javax / parsing |
Type: | JavaX fragment (include) |
Public (visible to everyone): | Yes |
Archived (hidden from active list): | No |
Created/modified: | 2019-01-20 14:57:18 |
Source code size: | 298 bytes / 10 lines |
Pitched / IR pitched: | No / No |
Views / Downloads: | 280 / 323 |
Referenced in: | #1006654 - Standard functions list 2 (LIVE, continuation of #761) #1025454 - format3_curlyIfMultiToken #1027123 - format3_round - format star pattern, group arguments in round brackets if longer than one token |