版本:Unity 6 (6000.0)
语言英语
  • C#

SearchIndexer.AddExactWord

建议更改

成功!

感谢您帮助我们提高 Unity 文档的质量。虽然我们无法接受所有提交内容,但我们确实会阅读用户提出的每项建议更改,并在适用的情况下进行更新。

关闭

提交失败

由于某种原因,无法提交您的建议更改。请在几分钟后<a>重试</a>。感谢您抽出时间帮助我们提高 Unity 文档的质量。

关闭

取消

声明

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

参数

word 要添加到索引中的词语。
score 此词语的相关性评分。
documentIndex 在其中发现所索引词语的文档。

描述

将来自文档的新词语添加到索引中。用多种变体添加该词语,允许进行部分搜索。

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");
    }
}