代码之家  ›  专栏  ›  技术社区  ›  Florian Müller

谷歌:谷歌搜索字符串中可能有多少个字母?

php
  •  2
  • Florian Müller  · 技术社区  · 13 年前

    愚蠢的问题,但有点有趣这只是一个限制还是他们有其他的技巧?

    3 回复  |  直到 13 年前
        1
  •  1
  •   XMen    13 年前

    2048是正确的答案

    <input autocomplete="off" class="lst" type="text" name="q" maxlength="2048" value="" title="Search" spellcheck="false">
    

    希望对你有帮助。

        2
  •  2
  •   wajiw    13 年前

    对于Google搜索API:

    There is a limit of 320 characters returned for each meta tag when using getfields.

    用法

    GET /search?q=[search term]&output=xml&client=test&site=test&getfields=[meta tag name]
    

    http://code.google.com/apis/searchappliance/documentation/50/xml_reference.html

        3
  •  1
  •   Elzo Valugi    13 年前

    哈哈。看看谷歌主页上的HTML输入maxlength。

    <input autocomplete="off" class="lst" type="text" name="q" maxlength="2048" value="" title="Search" spellcheck="false">