Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちは私はそのようないくつかの入力があります:
$string = "0°25'30"S, 91°7'W"
個々の要素をキャプチャするphpで正規表現を作成して、最終的に次のようにします。
$position_array = array([0] => 0 [1] => 25 [2] => 30 [3] => S [4] => 91 [0] => 7 [0] => W)
どんな助けでも大歓迎です。
頭のてっぺんから、私はこれを試してみます:
$array = array_filter(preg_split("/[^A-Za-z0-9]/",$string), function ($segment) { return strlen(trim($segment)); });