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

14
LINES

< > BotCompany Repo | #1008045 // words2 - deeply extract all words (and numbers) from string

JavaX fragment (include)

static L<S> words2(S s) {
  new L<S> l;
  int n = l(s);
  for (int i = 0; i < n; ) {
    int j = i;
    while (j < n && isLetterOrDigit(s.charAt(j)))
      ++j;
    if (j > i) l.add(substring(s, i, j));
    while (j < n && !isLetterOrDigit(s.charAt(j)))
      ++j;
    i = j;
  }
  ret l;
}

Author comment

Began life as a copy of #1007662

download  show line numbers  debug dex  old transpilations   

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

No comments. add comment

Snippet ID: #1008045
Snippet name: words2 - deeply extract all words (and numbers) from string
Eternal ID of this version: #1008045/4
Text MD5: 3154ecd12a4e7b4c30cfe3c74b89c0b5
Author: stefan
Category: javax / parsing
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2018-05-17 14:06:54
Source code size: 303 bytes / 14 lines
Pitched / IR pitched: No / No
Views / Downloads: 540 / 608
Version history: 3 change(s)
Referenced in: #1006654 - Standard functions list 2 (LIVE, continuation of #761)
#1015559 - deepWords - synonym of words2 - deeply extract all words (and numbers) from string
#1016968 - words2_noNumbers - deeply extract all words from string
#1024126 - words2_spaces - deeply extract all words (and numbers) from string, join with space
#1025782 - words2_plusApostrophe - deeply extract all words (and numbers) from string