Version: 2022.2
public void AddExactWord (string word, int score, int documentIndex);

参数

word Word to add to the index.
score Relevance score of the word.
documentIndex Document where the indexed word was found.

描述

Adds a new word coming from a document to the index. The word is added with multiple variations allowing partial search.

using System.Linq;
using UnityEditor;
using UnityEditor.Search;
using UnityEngine;

static class Example_SearchIndexer_AddExactWord
{
    [MenuItem("Examples/SearchIndexer/AddExactWord")]
    public static void Run()
    {
        var si = new SearchIndexer();
        si.Start();
        var di = si.AddDocument("document1");

        // AddExactWord is used to add exact word match on queries using !"exact_match"
        si.AddExactWord("unity2020", score: 0, di);

        si.Finish(new string[0]);
        Debug.Assert(si.Search("unity").Count() == 0, "You need to search using !\"unity2020\"");
        Debug.Assert(si.Search("!\"unity2020\"").Count() == 1, "No result found");
    }
}
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961