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

8
LINES

< > BotCompany Repo | #1021183 // regexpExtractAllIC - return all whole matches

JavaX fragment (include)

static LS regexpExtractAllIC(S pat, S s) {
  if (s == null) null;
  Matcher m = regexpMatcherIC(pat, s);
  new LS out;
  while (m.find())
    out.add(m.group());
  ret out;
}

Author comment

Began life as a copy of #1019758

download  show line numbers  debug dex  old transpilations   

Travelled to 7 computer(s): bhatertpkbcr, cfunsshuasjs, mqqgnosmbjvj, pyentgdyhuwx, pzhvpgtvlbxg, tvejysmllsmz, vouqrxazstgt

No comments. add comment

Snippet ID: #1021183
Snippet name: regexpExtractAllIC - return all whole matches
Eternal ID of this version: #1021183/1
Text MD5: e154d5118cb5a3b1388be5c3b773ef30
Author: stefan
Category: javax
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2019-02-02 14:30:35
Source code size: 181 bytes / 8 lines
Pitched / IR pitched: No / No
Views / Downloads: 187 / 214
Referenced in: [show references]