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

12
LINES

< > BotCompany Repo | #1011059 // dropFirstWord - see firstWord (does not handle punctuation)

JavaX fragment (include)

static S dropFirstWord(S s) {
  if (s == null) null;
  L<S> tok = javaTok(s);
  ret dropFirst(l(get(tok, 0))+l(get(tok, 1))+l(get(tok, 2)), s);
}

static S dropFirstWord(S word, S s) {
  if (s == null) null;
  L<S> tok = javaTok(s);
  if (!eqic(get(tok, 1), word)) ret s;
  ret dropFirst(l(get(tok, 0))+l(get(tok, 1))+l(get(tok, 2)), s);
}

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: #1011059
Snippet name: dropFirstWord - see firstWord (does not handle punctuation)
Eternal ID of this version: #1011059/3
Text MD5: c855447c8d71bc96605a274f12887917
Author: stefan
Category: javax / a.i.
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2017-12-03 00:23:51
Source code size: 350 bytes / 12 lines
Pitched / IR pitched: No / No
Views / Downloads: 391 / 404
Version history: 2 change(s)
Referenced in: [show references]