0

你能帮我解决这个问题吗,一个正则表达式语法来执行以下操作

  1. 如果链接以 // 开头,那么我将进行字符串连接以添加“文件:”
  2. 如果链接以任何内容开头,我将进行字符串连接以添加“html://”

例如 1 如果它以
//host/data/user/temp/data.text 开头,则希望将其设为“file://host/data/user ...”

示例:对于 2,如果它以
Google.com 开头,我想将其设为“html://Google.com”

4

1 回答 1

-1
 Try this.   
     $subject =   'filename';
     //$subject =  '//filename';
    if(preg_match("/^\/\//", $subject)){
      //$newstring=  preg_replace("/^\/\//", "file://", $subject);
      $newstring= "file:".$subject;
    }else{
     $newstring= "http://".$subject;
    }
于 2013-09-21T07:04:14.400 回答