Google.Search

基本语法

function_call("google.search", {"search": $value})
参数 描述 示例 必填
$value 表示要搜索的内容,它支持所有的公式:
  • AB2
  • concat(AB2, " vs ", AB3)
  • "对比TableDI和Excel的异同"
  • 举例

    示例 1: 简单搜索

    function_call("google.search", {"search": "TableDI功能介绍"})

    这个示例将会在Google上搜索“TableDI功能介绍”。

    示例 2: 使用单元格引用

    function_call("google.search", {"search": AB2})

    假设单元格AB2的内容是“TableDI vs Excel”,这个示例将会在Google上搜索“TableDI vs Excel”。

    示例 3: 使用concat函数

    function_call("google.search", {"search": concat(AB2, " vs ", AB3)})

    假设单元格AB2的内容是“TableDI”,单元格AB3的内容是“Excel”,这个示例将会在Google上搜索“TableDI vs Excel”。

    示例 4: 直接输入搜索内容

    function_call("google.search", {"search": "对比TableDI和Excel的异同"})

    这个示例将会在Google上搜索“对比TableDI和Excel的异同”。