代码之家  ›  专栏  ›  技术社区  ›  Leo

PHP字符串中不定冠词(a,an)的正确形式

  •  6
  • Leo  · 技术社区  · 14 年前

    有没有一种简单的方法来替换字符串中的a/an,以便与下面的单词保持一致-这与“S”在日期格式中的工作方式非常相似?

    $apple = 'apple';
    $pear = 'pear';
    echo "This is a $apple, this is a $pear."
    
    --> This is an apple, this is a pear
    
    6 回复  |  直到 14 年前
        1
  •  6
  •   Toto    14 年前

    试试这个:

    $l = array('a apple is a fruit', 'a banana is also a fruit');
    
    foreach($l as $s) {
      $s = preg_replace('/(^| )a ([aeiouAEIOU])/', '$1an $2', $s);
      echo $s,"\n";
    }
    

    输出:

    an apple is a fruit
    a banana is also a fruit
    
        3
  •  6
  •   danielgwood    14 年前

    您可以使用正则表达式来交换a/和,具体取决于它后面的内容。更棘手的部分实际上是定义所有要交换的情况——这比“如果后面跟着一个元音”更复杂。

    因此:

    • 大学
    • 一个小时
    • 镱分子
    • 一只黄色的狗
    • 美国
    • 安M

    开始一个正则表达式来解决它

    $text = preg_replace("/(?=a|e|i|o|u|yt)a/", "an", $text);
    
        4
  •  2
  •   Morfildur    14 年前

    不确定它是否在PHP中以这种方式工作,但真正简单的解决方案是:

    $string = preg_replace('/\ba\b\s([aeiou])/',   'an $1', $string);
    $string = preg_replace('/\ban\b\s([^aeiou])/', 'an $1', $string);
    

    (不确定a/a规则,因为德语中没有这样的规则,我通常使用听起来更好的规则)

    \b是单词边界,因此\ba\b查找单词a,后跟空格和一个字母[aeiou]。字母被捕捉到$1,表达式被替换为 an 接着是那封被俘的信。

        5
  •  0
  •   Derwent    9 年前

    <?php
    //code inspired by https://github.com/Kaivosukeltaja/php-indefinite-article/blob/master/IndefiniteArticle.class.php
    global $indef_A_abbrev, $indef_A_y_cons, $indef_A_explicit_an, $indef_A_ordinal_an, $indef_A_ordinal_a;
    
    $indef_A_abbrev = "(?! FJO | [HLMNS]Y.  | RY[EO] | SQU
              | ( F[LR]? | [HL] | MN? | N | RH? | S[CHKLMNPTVW]? | X(YL)?) [AEIOU])
                [FHLMNRSX][A-Z]
            ";
    $indef_A_y_cons = 'y(b[lor]|cl[ea]|fere|gg|p[ios]|rou|tt)';
    $indef_A_explicit_an = "euler|hour(?!i)|heir|honest|hono";
    $indef_A_ordinal_an = "[aefhilmnorsx]-?th";
    $indef_A_ordinal_a = "[bcdgjkpqtuvwyz]-?th";
    
    function indefinite_article($input){
        global $indef_A_abbrev, $indef_A_y_cons, $indef_A_explicit_an, $indef_A_ordinal_an, $indef_A_ordinal_a;
        $word = preg_replace("^\s*(.*)\s*^", "$1", $input);
        if(preg_match("/^[8](\d+)?/", $word)) {
            return "an $word";
        }
        if(preg_match("/^[1][1](\d+)?/", $word) || (preg_match("/^[1][8](\d+)?/", $word))) {
            if(strlen(preg_replace(array("/\s/", "/,/", "/\.(\d+)?/"), '', $word))%3 == 2) {
                return "an $word";
            }
        }
        if(preg_match("/^(".$indef_A_ordinal_a.")/i", $word))       return "a $word";
        if(preg_match("/^(".$indef_A_ordinal_an.")/i", $word))      return "an $word";
        if(preg_match("/^(".$indef_A_explicit_an.")/i", $word))         return "an $word";
        if(preg_match("/^[aefhilmnorsx]$/i", $word))        return "an $word";
        if(preg_match("/^[bcdgjkpqtuvwyz]$/i", $word))      return "a $word";
        if(preg_match("/^(".$indef_A_abbrev.")/x", $word))          return "an $word";
        if(preg_match("/^[aefhilmnorsx][.-]/i", $word))         return "an $word";
        if(preg_match("/^[a-z][.-]/i", $word))          return "a $word";
        if(preg_match("/^[^aeiouy]/i", $word))                  return "a $word";
        if(preg_match("/^e[uw]/i", $word))                      return "a $word";
        if(preg_match("/^onc?e\b/i", $word))                    return "a $word";
        if(preg_match("/^uni([^nmd]|mo)/i", $word))     return "a $word";
        if(preg_match("/^ut[th]/i", $word))                     return "an $word";
        if(preg_match("/^u[bcfhjkqrst][aeiou]/i", $word))   return "a $word";
        if(preg_match("/^U[NK][AIEO]?/", $word))                return "a $word";
        if(preg_match("/^[aeiou]/i", $word))            return "an $word";
        if(preg_match("/^(".$indef_A_y_cons.")/i", $word))  return "an $word";
        return "a $word";
    }
    
    $words = array(
        "historical",
        "hour",
        "wholesale",
        "administrator",
        "inner circle"
    );
    foreach ($words as $word) {
        echo indefinite_article($word);
        echo "\n";
    }
    
    ?>
    
        6
  •  0
  •   chaos    8 年前

    我已经分叉了Luke Chavers提到的模块,清理了它,修复了一个逻辑错误,并使用 Composer ;安装后,您可以通过以下方式将其拉入项目:

    php composer.phar require thaumatic/indefinite-article
    

    https://github.com/thaumatic/indefinite-article