代码之家  ›  专栏  ›  技术社区  ›  Derek Adair

在给定索引的字符串中插入字符串

  •  5
  • Derek Adair  · 技术社区  · 14 年前

    a native php method to inject a string into another string manual 的字符串函数列表。但我没有看到任何本机方法显式地将一个字符串插入另一个字符串,所以我想我应该这样做。

    前任: 拿一根绳子 some-image.jpg 注入 .big 之前 .jpg some-image.big.jpg

    3 回复  |  直到 14 年前
        1
  •  8
  •   Tim Cooper    14 年前

    You can do anything with regular expressions !

    $var = 'myimage.jpg';
    $new_var = preg_replace('/\.jpg$/', '.big$0', $var);
    

    我建议大家阅读一下如何编写正则表达式,因为它们在开发中非常有用( here's a starting point ).

        2
  •  24
  •   Daniel Vandersluis    14 年前

    substr_replace 要通过用插入替换零长度子字符串来插入字符串,请执行以下操作:

    $string = "some-image.jpg";
    $insertion = ".big";
    $index = 10;
    
    $result = substr_replace($string, $insertion, $index, 0);
    

    length (4)参数):

        3
  •  7
  •   Tomasz Kowalczyk    14 年前

    看这个: http://www.krizka.net/2007/12/29/how-to-insert-a-string-into-another-string-in-php/

    $newstring=substr_replace($orig_string, $insert_string, $position, 0);