23
の代わりに1
どうすれば入手でき$lastnum1
ますか?
$text = "1 out of 23";
$lastnum1 = $this->getEval(eregi_replace("[^* out of]", '', $text));
あなたができること:
$text = "1 out of 23";
if(preg_match_all('/\d+/', $text, $numbers))
$lastnum = end($numbers[0]);
$text = "1 out of 23";
$ex = explode(' ',$text);
$last = end($ex);
そして、最後が数字であることを確認したい場合
if (is_numeric(end($ex))) {
$last = end($ex);
}
それを行う別の方法:
$text = "1 out of 23";
preg_match('/(\d+)\D*$/', $text, $m);
$lastnum = $m[1];
これは、数字以外の数字が続く場合でも、文字列の最後の数字と一致します。
preg_match
値をに抽出するために使用します$matches
:
preg_match("/([0-9]+) out of ([0-9]+)/", $text, $matches);
$text = '1 out of 23';
preg_match('/\d+ out of (\d+)/', $text, $matches);
$lastnum1 = $matches[1];
フォーマットが同じ場合は、文字列を分解して最後の文字列を変換してみませんか?
<?php
$text = "1 out of 23";
$words = explode(" ",$text);
$lastnum = (int)array_pop($words);