21 lines
523 B
C#
21 lines
523 B
C#
namespace JiebaNet.Segmenter
|
|
{
|
|
public class Token
|
|
{
|
|
public string Word { get; set; }
|
|
public int StartIndex { get; set; }
|
|
public int EndIndex { get; set; }
|
|
|
|
public Token(string word, int startIndex, int endIndex)
|
|
{
|
|
Word = word;
|
|
StartIndex = startIndex;
|
|
EndIndex = endIndex;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return string.Format("[{0}, ({1}, {2})]", Word, StartIndex, EndIndex);
|
|
}
|
|
}
|
|
} |