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

34
LINES

< > BotCompany Repo | #1002414 // List Processing Bot

JavaX source code [tags: use-pretranspiled] - run with: x30.jar

Libraryless. Click here for Pure Java version (1131L/8K/25K).

!752

answer {
  if "how many elements are in the list *" {
    L list = cast safeUnstructure(m.unq(0));
    ret str(l(list));
  }
  
  if "what is the * element in the list *" {
    S x = m.unq(0).toLowerCase();
    L list = cast safeUnstructure(m.unq(1));
    if (eq(x, "first"))
      ret structure(first(list));
    if (eq(x, "last"))
      ret structure(last(list));
    
    // "1st", "2nd" etc  
    int i = 0;
    while (i < l(x) && isDigit(x.charAt(i)))
      ++i;
    if (i > 0)
      ret structure(get(list, parseInt(x.substring(0, i))-1));
  }
  
  // It should match if you write: "what is the 1st element..."
  // cause the tokenizer works like that...
  if (match("what is the * st element in the list *", s, m)
    || match("what is the * nd element in the list *", s, m)
    || match("what is the * rd element in the list *", s, m)
    || match("what is the * th element in the list *", s, m)) {
    L list = cast safeUnstructure(m.unq(1));
    ret structure(get(list, parseInt(m.unq(0))-1));
  }
}

Author comment

Began life as a copy of #1002394

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: #1002414
Snippet name: List Processing Bot
Eternal ID of this version: #1002414/1
Text MD5: 1b218bfb2c3d80bc0273c544c5352ac9
Transpilation MD5: 27260810e828c4f31a9e8dd78bcf8319
Author: stefan
Category: javax
Type: JavaX source code
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2016-01-20 17:57:29
Source code size: 1048 bytes / 34 lines
Pitched / IR pitched: No / No
Views / Downloads: 562 / 1108
Referenced in: [show references]