Szukaj…


Uwagi

Regex powinien być używany do innych zastosowań oprócz wyciągania strun z łańcuchów lub w inny sposób cięcia strun na kawałki.

Dzielenie łańcucha przez separatory

explode i strstr to prostsze metody uzyskiwania podciągów przez separatory.

Ciąg zawierający kilka części tekstu oddzielonych wspólnym znakiem można podzielić na części za pomocą funkcji explode .

$fruits = "apple,pear,grapefruit,cherry";
print_r(explode(",",$fruits)); // ['apple', 'pear', 'grapefruit', 'cherry']

Metoda obsługuje również parametr limitu, którego można użyć w następujący sposób:

$fruits= 'apple,pear,grapefruit,cherry';

Jeśli parametr limitu wynosi zero, jest to traktowane jako 1.

print_r(explode(',',$fruits,0)); // ['apple,pear,grapefruit,cherry']

Jeśli limit jest ustawiony i dodatni, zwrócona tablica będzie zawierała maksimum elementów limitu, a ostatni element zawiera resztę ciągu.

print_r(explode(',',$fruits,2)); // ['apple', 'pear,grapefruit,cherry']

Jeśli parametr limitu jest ujemny, zwracane są wszystkie składniki oprócz ostatniego ograniczenia.

print_r(explode(',',$fruits,-1)); // ['apple', 'pear', 'grapefruit']

explode można połączyć z list celu przetworzenia ciągu na zmienne w jednym wierszu:

$email = "[email protected]";
list($name, $domain) = explode("@", $email);

Należy jednak upewnić się, że wynik explode zawiera wystarczającą liczbę elementów, w przeciwnym razie zostanie uruchomione niezdefiniowane ostrzeżenie o indeksie.

strstr usuwa paski lub zwraca substrat przed pierwszym wystąpieniem danej igły.

$string = "1:23:456";
echo json_encode(explode(":", $string)); // ["1","23","456"]
var_dump(strstr($string, ":")); // string(7) ":23:456"

var_dump(strstr($string, ":", true)); // string(1) "1"

Przeszukiwanie podłańcucha za pomocą strpos

strpos można rozumieć jako liczbę bajtów w stogu siana przed pierwszym wystąpieniem igły.

var_dump(strpos("haystack", "hay")); // int(0)
var_dump(strpos("haystack", "stack")); // int(3)
var_dump(strpos("haystack", "stackoverflow"); // bool(false)

Sprawdzanie, czy istnieje podciąg

Zachowaj ostrożność przy sprawdzaniu wartości PRAWDA lub FAŁSZ, ponieważ jeśli zostanie zwrócony indeks 0, instrukcja if zobaczy to jako FAŁSZ.

$pos = strpos("abcd", "a"); // $pos = 0;
$pos2 = strpos("abcd", "e"); // $pos2 = FALSE;

// Bad example of checking if a needle is found.
if($pos) { // 0 does not match with TRUE.
    echo "1. I found your string\n";
}
else {
    echo "1. I did not found your string\n";
}

// Working example of checking if needle is found.
if($pos !== FALSE) {
    echo "2. I found your string\n";
}
else {
    echo "2. I did not found your string\n";
}

// Checking if a needle is not found
if($pos2 === FALSE) {
    echo "3. I did not found your string\n";
}
else {
    echo "3. I found your string\n";
}

Wynik całego przykładu:

1. I did not found your string 
2. I found your string 
3. I did not found your string 

Wyszukaj, zaczynając od przesunięcia

// With offset we can search ignoring anything before the offset
$needle = "Hello";
$haystack = "Hello world! Hello World";

$pos = strpos($haystack, $needle, 1); // $pos = 13, not 0

Uzyskaj wszystkie wystąpienia podłańcucha

$haystack = "a baby, a cat, a donkey, a fish";
$needle = "a ";
$offsets = [];
// start searching from the beginning of the string
for($offset = 0;
        // If our offset is beyond the range of the
        // string, don't search anymore.
        // If this condition is not set, a warning will
        // be triggered if $haystack ends with $needle
        // and $needle is only one byte long.
        $offset < strlen($haystack); ){
    $pos = strpos($haystack, $needle, $offset);
    // we don't have anymore substrings
    if($pos === false) break;
    $offsets[] = $pos;
    // You may want to add strlen($needle) instead,
    // depending on whether you want to count "aaa"
    // as 1 or 2 "aa"s.
    $offset = $pos + 1;
}
echo json_encode($offsets); // [0,8,15,25]

Parsowanie łańcucha przy użyciu wyrażeń regularnych

preg_match może być użyty do parsowania łańcucha przy użyciu wyrażenia regularnego. Części wyrażone w nawiasach nazywane są wzorami, a za ich pomocą możesz wybierać poszczególne części łańcucha.

$str = "<a href=\"http://example.org\">My Link</a>";
$pattern = "/<a href=\"(.*)\">(.*)<\/a>/";
$result = preg_match($pattern, $str, $matches);
if($result === 1) {
    // The string matches the expression
    print_r($matches);
} else if($result === 0) {
    // No match
} else {
    // Error occured
}

Wynik

Array
(
    [0] => <a href="http://example.org">My Link</a>
    [1] => http://example.org
    [2] => My Link
)

Podciąg

Podciąg zwraca część ciągu określoną przez parametry początkowe i długości.

var_dump(substr("Boo", 1)); // string(2) "oo"

Jeśli istnieje możliwość spełnienia wielobajtowych ciągów znaków, bezpieczniej byłoby użyć mb_substr.

$cake = "cakeæøå";
var_dump(substr($cake, 0, 5)); // string(5) "cake�"
var_dump(mb_substr($cake, 0, 5, 'UTF-8')); // string(6) "cakeæ"

Innym wariantem jest funkcja substr_replace, która zastępuje tekst w części ciągu.

var_dump(substr_replace("Boo", "0", 1, 1)); // string(3) "B0o"
var_dump(substr_Replace("Boo", "ts", strlen("Boo"))); // string(5) "Boots"

Powiedzmy, że chcesz znaleźć określone słowo w ciągu - i nie chcesz używać Regex.

$hi = "Hello World!";
$bye = "Goodbye cruel World!";

var_dump(strpos($hi, " ")); // int(5)
var_dump(strpos($bye, " ")); // int(7)

var_dump(substr($hi, 0, strpos($hi, " "))); // string(5) "Hello"
var_dump(substr($bye, -1 * (strlen($bye) - strpos($bye, " ")))); // string(13) " cruel World!"

// If the casing in the text is not important, then using strtolower helps to compare strings
var_dump(substr($hi, 0, strpos($hi, " ")) == 'hello'); // bool(false)
var_dump(strtolower(substr($hi, 0, strpos($hi, " "))) == 'hello'); // bool(true)

Inną opcją jest bardzo podstawowe przetwarzanie wiadomości e-mail.

$email = "[email protected]";
$wrong = "foobar.co.uk";
$notld = "foo@bar";

$at = strpos($email, "@"); // int(4)
$wat = strpos($wrong, "@"); // bool(false)
$nat = strpos($notld , "@"); // int(3)

$domain = substr($email, $at + 1); // string(11) "example.com"
$womain = substr($wrong, $wat + 1); // string(11) "oobar.co.uk"
$nomain = substr($notld, $nat + 1); // string(3) "bar"

$dot = strpos($domain, "."); // int(7)
$wot = strpos($womain, "."); // int(5)
$not = strpos($nomain, "."); // bool(false)

$tld = substr($domain, $dot + 1); // string(3) "com"
$wld = substr($womain, $wot + 1); // string(5) "co.uk"
$nld = substr($nomain , $not + 1); // string(2) "ar"

// string(25) "[email protected] is valid"
if ($at && $dot) var_dump("$email is valid");
else var_dump("$email is invalid");

// string(21) "foobar.com is invalid"
if ($wat && $wot) var_dump("$wrong is valid");
else var_dump("$wrong is invalid");

// string(18) "foo@bar is invalid"
if ($nat && $not) var_dump("$notld is valid");
else var_dump("$notld is invalid");

// string(27) "foobar.co.uk is an UK email"
if ($tld == "co.uk") var_dump("$email is a UK address");
if ($wld == "co.uk") var_dump("$wrong is a UK address");
if ($nld == "co.uk") var_dump("$notld is a UK address");

Lub nawet umieszczenie „Kontynuuj czytanie” lub „...” na końcu napisu

$blurb = "Lorem ipsum dolor sit amet";
$limit = 20;

var_dump(substr($blurb, 0, $limit - 3) . '...'); // string(20) "Lorem ipsum dolor..."


Modified text is an extract of the original Stack Overflow Documentation
Licencjonowany na podstawie CC BY-SA 3.0
Nie związany z Stack Overflow