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

11
LINES

< > BotCompany Repo | #1001975 // simpleSpaces

JavaX fragment (include)

1  
// Convert all spacing to a single space, so everything's neat & on one line.
2  
static L<S> simpleSpaces(L<S> tok) {
3  
  tok = cloneList(tok);
4  
  for (int i = 0; i < l(tok); i += 2)
5  
    tok.set(i, tok.get(i).equals("") ? "" : " ");
6  
  ret tok;
7  
}
8  
9  
static S simpleSpaces(S s) {
10  
  ret join(simpleSpaces(nlTok(s)));
11  
}

download  show line numbers  debug dex  old transpilations   

Travelled to 13 computer(s): aoiabmzegqzx, bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tslmcundralx, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1001975
Snippet name: simpleSpaces
Eternal ID of this version: #1001975/2
Text MD5: d3b8316f997fc19b82813a39753946f2
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2017-11-30 00:51:46
Source code size: 317 bytes / 11 lines
Pitched / IR pitched: No / No
Views / Downloads: 567 / 836
Version history: 1 change(s)
Referenced in: [show references]