Click or drag to resize

textResourceResolverBaseGetSearchRegex Method

imbSCI | imbACE | imbNLP | imbWEM | imbWBI

[This is preliminary documentation and is subject to change.]

Builds the search regex pattern for inflected form needle, optionally for lemma needle and gram tag needle

Namespace:  imbNLP.PartOfSpeech.resourceProviders.core
Assembly:  imbNLP.PartOfSpeech (in imbNLP.PartOfSpeech.dll) Version: 0.2.18
Syntax
C#
protected abstract string GetSearchRegex(
	string inflectFormNeedle,
	string lemmaNeedle = "",
	string gramTagNeedle = "",
	bool allowPartialInflectedForms = false,
	bool allowPartialLemmaForms = false
)

Parameters

inflectFormNeedle
Type: SystemString
The inflect form needle.
lemmaNeedle (Optional)
Type: SystemString
The lemma needle.
gramTagNeedle (Optional)
Type: SystemString
The gram tag needle.
allowPartialInflectedForms (Optional)
Type: SystemBoolean
if set to true [allow partial inflected forms].
allowPartialLemmaForms (Optional)
Type: SystemBoolean
if set to true [allow partial lemma forms].

Return Value

Type: String

[Missing <returns> documentation for "M:imbNLP.PartOfSpeech.resourceProviders.core.textResourceResolverBase.GetSearchRegex(System.String,System.String,System.String,System.Boolean,System.Boolean)"]

See Also