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

37
LINES

< > BotCompany Repo | #1019436 // jreplace_first_dyn - replace only once

JavaX fragment (include)

1  
static S jreplace_first_dyn(S s, S in, O out) {
2  
  ret jreplace_first_dyn(s, in, out, null);
3  
}
4  
5  
static S jreplace_first_dyn(S s, S in, O out, O condition) {
6  
  L<S> tok = javaTok(s);
7  
  ret jreplace_first_dyn(tok, in, out, false, false, condition) ? join(tok) : s;
8  
}
9  
10  
// leaves tok properly tokenized
11  
// returns true iff anything was replaced
12  
static boolean jreplace_first_dyn(L<S> tok, S in, O out) {
13  
  ret jreplace_first_dyn(tok, in, out, false, true, null);
14  
}
15  
16  
static boolean jreplace_first_dyn(L<S> tok, S in, O out, O condition) {
17  
  ret jreplace_first_dyn(tok, in, out, false, true, condition);
18  
}
19  
20  
static boolean jreplace_first_dyn(L<S> tok, S in, O out, boolean ignoreCase, boolean reTok, O condition) {
21  
  L<S> tokin = javaTok(in);
22  
  jfind_preprocess(tokin);
23  
24  
  boolean anyChange = false;
25  
  int i = 1;
26  
  if ((i = findCodeTokens(tok, i, ignoreCase, toStringArray(codeTokensOnly(tokin)), condition)) >= 0) {
27  
    L<S> subList = tok.subList(i-1, i+l(tokin)-1); // N to N
28  
    S expansion = cast callF(out, tok, i);
29  
    int end = i+l(tokin)-2;
30  
    clearAllTokens(tok, i, end); // C to C
31  
    tok.set(i, expansion);
32  
    if (reTok)
33  
      reTok(tok, i, end);
34  
    anyChange = true;
35  
  }
36  
  ret anyChange;
37  
}

Author comment

Began life as a copy of #1019424

download  show line numbers  debug dex  old transpilations   

Travelled to 12 computer(s): bhatertpkbcr, cbybwowwnfue, cfunsshuasjs, gwrvuhgaqvyk, irmadwmeruwu, ishqpsrjomds, lpdgvwnxivlt, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1019436
Snippet name: jreplace_first_dyn - replace only once
Eternal ID of this version: #1019436/3
Text MD5: bdf49c21d572841acd9ddbd663e3b699
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2018-11-06 19:22:00
Source code size: 1232 bytes / 37 lines
Pitched / IR pitched: No / No
Views / Downloads: 210 / 259
Version history: 2 change(s)
Referenced in: [show references]