PHP 클래스 Sastrawi\Stemmer\Stemmer
Nazief & Adriani, CS Stemmer, ECS Stemmer, Improved ECS.
파일 보기
프로젝트 열기: sastrawi/sastrawi
보호된 프로퍼티들
프로퍼티 |
타입 |
설명 |
|
$dictionary |
Sastrawi\Dictionary\DictionaryInterface |
The dictionary containing root words |
|
$visitorProvider |
Sastrawi\Stemmer\Context\Visitor\VisitorProvider |
Visitor provider |
|
공개 메소드들
메소드 |
설명 |
|
__construct ( Sastrawi\Dictionary\DictionaryInterface $dictionary ) |
|
|
getDictionary ( ) : Sastrawi\Dictionary\DictionaryInterface |
|
|
stem ( string $text ) : string |
Stem a text string to its common stem form. |
|
보호된 메소드들
메소드 상세
public __construct ( Sastrawi\Dictionary\DictionaryInterface $dictionary ) |
$dictionary |
Sastrawi\Dictionary\DictionaryInterface |
|
public getDictionary ( ) : Sastrawi\Dictionary\DictionaryInterface |
리턴 |
Sastrawi\Dictionary\DictionaryInterface |
|
Stem a text string to its common stem form.
public stem ( string $text ) : string |
$text |
string |
the text string to stem, e.g : memberdayakan pembangunan |
리턴 |
string |
common stem form, e.g : daya bangun |
Asian J. (2007) “Effective Techniques for Indonesian Text Retrieval” page 76-77.
stemSingularWord()
보호된 메소드
Stem a singular word to its common stem form.
Stem a word to its common stem form.
프로퍼티 상세
The dictionary containing root words
protected DictionaryInterface,Sastrawi\Dictionary $dictionary |
리턴 |
Sastrawi\Dictionary\DictionaryInterface |
|
$visitorProvider 보호되어 있는 프로퍼티
protected VisitorProvider,Sastrawi\Stemmer\Context\Visitor $visitorProvider |
리턴 |
Sastrawi\Stemmer\Context\Visitor\VisitorProvider |
|