doutao6330 2016-06-25 20:05
浏览 118
已采纳

在第一个破折号之前从字符串中提取标题

I have my working code which extracts the title from a string, but right now it still isn't very flexible.

Current code:

$post_title = "THIS IS A TEST - 10-01-2010 - HELLO WORLD (OKAY)!!";
$post_title = substr($post_title, 0, strpos($post_title, '-') - 1);

I want to get the title of the string, which is at the start of the string and goes until the first dash. I don't want to get the spaces before the dash and it could be that there is no dash at all.

The output of the current code works and outputs THIS IS A TEST.

But the current code doesn't work for the following cases, so I need a more flexible code:

  • THIS IS A TEST - 10-01-2010 - HELLO WORLD (OKAY)!!
  • THIS IS A TEST-10-01-2010 - HELLO WORLD (OKAY)!!
  • THIS IS A TEST - - - - 10-01-2010 - HELLO WORLD (OKAY)!!
  • THIS IS A TEST

So the title can exist without a - and someone could forget to put a space between the -, equally, someone could put too many spaces.

The output for all the above cases should always be THIS IS A TEST with no spaces at the end.

With the code I have, the only one that works is the first one.

   $title= explode('-', $post_title);
    $post_title=trim($title[0]);
    $trimmedTitle=$post_title;



    $str = "THIS IS A TEST -0-01-2010 - HELLO WORLD (OKAY)!!";
    preg_match("/^([\w\s]+)\s*-?/m", $str, $m);
    print_r($m);
    var_dump($variableName);



$iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path, FilesystemIterator::SKIP_DOTS));
$files = array();
$notAllowedExtension = array('jpg', 'vtr', 'html', 'htm' );

foreach($iterator as $file){

if(!in_array($file->getExtension(), $notAllowedExtension) && !$file->isDir())

//$files[filemtime($file->getPathname())] = $file->getPathname();

$files[] = $file->getPathname();

}

sort($files);

echo "<pre>" . print_r($files, true) . "</pre>";
  • 写回答

1条回答 默认 最新

  • dpkpaxhzffixp8426 2016-06-25 23:03
    关注

    Use explode() with the "-" as a delimiter to split it into chunks based on the presence of the "-" and then take the first portion and use trim() to trim the trailing spaces to give the title with no trailing spaces. This gives "THIS IS A TEST" in all the provided test cases. If there are no dashes then the entire string is returned.

    <?php
    
        $str = 'THIS IS A TEST - 10-01-2010 - HELLO WORLD (OKAY)!!';
        $title= explode('-', $str);
        $trimmedTitle=trim($title[0]);
        print_r($trimmedTitle);
    
        //$trimmedTitle ='THIS IS A TEST 
    
    ?>
    

    I have tested this against:

    THIS IS A TEST - 10-01-2010 - HELLO WORLD (OKAY)!!
    THIS IS A TEST-10-01-2010 - HELLO WORLD (OKAY)!!
    THIS IS A TEST - - - - 10-01-2010 - HELLO WORLD (OKAY)!!
    THIS IS A TEST
    

    and each returns THIS IS A TEST with no trailing spaces

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统
  • ¥25 由IPR导致的DRIVER_POWER_STATE_FAILURE蓝屏
  • ¥50 有数据,怎么建立模型求影响全要素生产率的因素
  • ¥50 有数据,怎么用matlab求全要素生产率
  • ¥15 TI的insta-spin例程
  • ¥15 完成下列问题完成下列问题
  • ¥15 C#算法问题, 不知道怎么处理这个数据的转换
  • ¥15 YoloV5 第三方库的版本对照问题
  • ¥15 请完成下列相关问题!