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

9
LINES

< > BotCompany Repo | #1018126 // ai_findLeadingPhrases - returns both parts of the split; assumes phrases in list don't have punctuation

JavaX fragment (include)

1  
static ItIt<PairS> ai_findLeadingPhrases(S s, Collection<S> phrases) {
2  
  final Set<S> set = asCISet(phrases);
3  
  L<S> tok = javaTokNPunctuation(s);
4  
  ret notNulls_iterator(
5  
    mapIterator(allTokSplits_nOnLeft_iterator(tok),
6  
      func(Pair<LS> p) -> PairS {
7  
        set.contains(trimJoin(simpleSpaces(p.a))) ? pair(join(p.a), join(p.b)) : null
8  
      }));
9  
}

Author comment

Began life as a copy of #1018119

download  show line numbers  debug dex  old transpilations   

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

No comments. add comment

Snippet ID: #1018126
Snippet name: ai_findLeadingPhrases - returns both parts of the split; assumes phrases in list don't have punctuation
Eternal ID of this version: #1018126/1
Text MD5: 3643c4d14af89005974b81f92c92038d
Author: stefan
Category: javax / a.i.
Type: JavaX fragment (include)
Public (visible to everyone): Yes
Archived (hidden from active list): No
Created/modified: 2018-09-02 16:59:23
Source code size: 364 bytes / 9 lines
Pitched / IR pitched: No / No
Views / Downloads: 276 / 318
Referenced in: [show references]