Not logged in.  Login/Logout/Register | List snippets | | Create snippet | Upload image | Upload data

10
LINES

< > BotCompany Repo | #1021066 // format3_curly

JavaX fragment (include)

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);
}

Author comment

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: 212 / 255
Referenced in: [show references]