如何读取文本文件并在冒号前搜索某个字符串,然后在冒号后显示内容?

时间:2015-05-25 08:09:18

标签: php regex file preg-match file-get-contents

我有一个包含以下内容的文件:

test:fOwimWPu0eSaNR8
test2:vogAqsfXpKzCfGr

我希望能够在文件中搜索说test并将:之后的字符串设置为变量,以便显示,使用等等。

以下是我到目前为止找到' test'在文件中。

$file = 'file.txt';
$string = 'test';

$searchFile = file_get_contents($file);
if (preg_match('/\\b'.$string.'\\b/', $searchFile)) {
    echo 'true';
    // Find String
} else {
    echo 'false';
}

我将如何做到这一点?

1 个答案:

答案 0 :(得分:3)

这应该适合你:

只需将您的文件放入包含file()的数组,然后只需preg_grep()所有行,这些行在冒号前面都有搜索字符串。

<?php

    $file = "file.txt";
    $search = "test";

    $lines = file($file, FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);

    $matches = preg_grep("/^" . preg_quote($search, "/") . ":(.*?)$/", $lines);
    $matches = array_map(function($v){
        return explode(":", $v)[1];
    }, $matches);

    print_r($matches);

?>

输出:

Array ( [0] => fOwimWPu0eSaNR8 )