ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

This content has been translated automatically.  Click here  to view the French version.
Help / WLanguage / Managing databases / HFSQL / HFSQL functions
WINDEV
WindowsLinuxJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac Catalyst
Others
Stored procedures
Returns the list of stop words used by a full-text index.
Example
// Récupère l'ensemble des mots ignorés par l'index full-text
let sListeMotVide = FichierDonnées.ListStopWord(MonIndexFullText)
// Pour chaque mot
FOR EACH STRING sMotVide OF sListeMotVide SEPARATED BY TAB
	// Affiche le mot vide
	Trace(sMotVide)
END
Syntax
<Result> = <Source>.ListStopWord(<Full-text index> [, <Path of the WDD file> [, <Password of the WDD file>]])
<Result>: Character string
List of stop words defined for the specified full-text index in the specified data file. This list has the following format:
<Mot 1> + TAB + <Mot 2> + TAB + ... + TAB + <Mot N>
The different stop words are separated by a tabulation (TAB). These words will be ignored by the full-text index.
Remarks:
  • The words can be written in uppercase if the full-text index is not sensitive to the case or without accented characters if the full-text index is not sensitive to the accented characters.
  • The words whose length is less than the minimum length specified for the full-text index may not appear in this list.
<Source>: Type corresponding to the specified source
Name of the data file containing the full-text index.
<Full-text index>: Character string
Name of full-text index used.
<Path of the WDD file>: Optional character string
Full path of analysis (.WDD file) where the data file is described. If this parameter is not specified or is an empty string (""), the data file is searched for in the current analysis.
<Password of the WDD file>: Optional string or Secret string
Password defined for the analysis. If no password is defined, this parameter must be an empty string ("").
Component: wd300hf.dll
Minimum version required
  • Version 25
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 03/27/2025

Send a report | Local help