如何从php中的字符串中获取特定字符串

时间:2013-12-19 06:43:34

标签: php

这是我的代码:

$a=array("N","W","E","W");
$b=12.2134123N

我只需从$ b获得N.

3 个答案:

答案 0 :(得分:0)

像这样的东西

<?php
$b='12.2134123N';
echo substr($b,strlen($b)-1,1); // N 

Source

答案 1 :(得分:0)

您可以使用substr

$b="12.2134123N"
echo substr($b, -1);

答案 2 :(得分:0)

你可以将其分解为:

$b="12.2134123N";
$new_string = explode('3',$b);
echo $new_string[2];


//  output N