WordsSegmenter.Tokenize(String, UInt32, WordSegmentsTokenizingHandler) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Chiama il gestore fornito con due iteratori che esere le parole prima e dopo un determinato indice nel testo fornito.
public:
virtual void Tokenize(Platform::String ^ text, unsigned int startIndex, WordSegmentsTokenizingHandler ^ handler) = Tokenize;
void Tokenize(winrt::hstring const& text, uint32_t const& startIndex, WordSegmentsTokenizingHandler const& handler);
public void Tokenize(string text, uint startIndex, WordSegmentsTokenizingHandler handler);
function tokenize(text, startIndex, handler)
Public Sub Tokenize (text As String, startIndex As UInteger, handler As WordSegmentsTokenizingHandler)
Parametri
- text
-
String
Platform::String
winrt::hstring
Testo specificato contenente parole da restituire.
- startIndex
-
UInt32
unsigned int
uint32_t
Indice in base zero in testo. Deve essere minore della lunghezza del testo.
- handler
- WordSegmentsTokenizingHandler
Funzione che riceve gli iteratori.
Commenti
Gli iteratori in WordSegmentsTokenizingHandler sono lazy e valutano piccoli blocchi di testo alla volta.
Il gestore viene chiamato al massimo una volta per ogni chiamata a Tokenize. Il gestore non viene chiamato se non sono presenti parole selezionabili nel testo.