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

11
LINES

< > BotCompany Repo | #1007003 // regexpIC - compile reg exp / make Java regexp Matcher (ignoring case)

JavaX fragment (include)

1  
static Matcher regexpIC(Pattern pat, S s) {
2  
  ret pat.matcher(unnull(s));
3  
}
4  
5  
static Matcher regexpIC(S pat, S s) {
6  
  ret compileRegexpIC(pat).matcher(unnull(s));
7  
}
8  
9  
static Pattern regexpIC(S pat) {
10  
  ret compileRegexpIC(pat);
11  
}

Author comment

Began life as a copy of #1004307

download  show line numbers  debug dex  old transpilations   

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

No comments. add comment

Snippet ID: #1007003
Snippet name: regexpIC - compile reg exp / make Java regexp Matcher (ignoring case)
Eternal ID of this version: #1007003/7
Text MD5: 20529b5c2c97e570d2baef0b1ba93d14
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2019-07-20 20:55:28
Source code size: 237 bytes / 11 lines
Pitched / IR pitched: No / No
Views / Downloads: 556 / 582
Version history: 6 change(s)
Referenced in: [show references]