• Home
  • Raw
  • Download

Lines Matching refs:sentence

101 This sentence "生きるか死ぬか、それが問題だ。" (<a href="http://tatoeba.org/eng/sentences/show/868189">from Tatoeb…
124 and \ref bl_boundary_sentence_rules "sentence" boundary rules.
213 The \ref bl_boundary_sentence_rules "sentence rules" have two options:
215 - Split the text on the point where sentence terminator like ".!?" detected: \ref boost::locale::bo…
216 - Split the text on the point where sentence separator like "line feed" detected: \ref boost::local…
218 Naturally to ignore sentence separators we would call \ref boost::locale::boundary::segment_index::…
226 ssegment_index map(sentence,text.begin(),text.end(),gen("en_US.UTF-8"));
239 The reason is that "How\n" is still considered a sentence but selected by different
327 std::string const text="First sentence. Second sentence! Third one?";
329 sboundary_point_index map(sentence,text.begin(),text.end(),gen("en_US.UTF-8"));
352 First two sentences are: First sentence. Second sentence!
363 and \ref bl_boundary_sentence_rules "sentence" rules for filtering boundary points.
369 std::string const text= "First sentence. Second\n"
370 "sentence! Third one?";
375 First two sentences are: First sentence. Second
379 is considered an independent sentence that was separated by
384 by a sentence terminators like ".!?".
394 First two sentences are: First sentence. Second
395 sentence!
408 std::string const text= "First sentence. Second\n"
409 "sentence! Third one?";
410 sboundary_point_index map(sentence,text.begin(),text.end(),gen("en_US.UTF-8"));
414 std::cout << "There is a sentence terminator: ";
416 std::cout << "There is a sentence separator: ";
426 There is a sentence terminator: [First sentence. |Second
427 sentence! Third one?]
428 There is a sentence separator: [First sentence. Second
429 |sentence! Third one?]
430 There is a sentence terminator: [First sentence. Second
431 sentence! |Third one?]
432 There is a sentence terminator: [First sentence. Second
433 sentence! Third one?|]