Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 489567
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T01:49:16+00:00 2026-05-13T01:49:16+00:00

I have a few strings in the following format: S25 22.087 E152 46.125 S23

  • 0

I have a few strings in the following format:

S25 22.087 E152 46.125
S23 32.230 E148 10.576
S25 00.039 E152 12.480
S26 19.496 E152 43.501

I would like to parse the strings and split them into two parts, so:
$foo = ‘S25 22.087 E152 46.125’;

would become:

$foo[0] = 'S25 22.087';
$foo[1] = 'E152 46.125';

(it doesn’t have to be in an array, two new variables would also work fine).

How can this be done? I’d prefer to have a regexp use rather than finding the posing of E and doing a substr().

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T01:49:17+00:00Added an answer on May 13, 2026 at 1:49 am

    S25 22.087 E152 46.125 to me looks like a latitude and longitude position value. So you should also expect N25 22.087 W152 46.125 and be able to parse that as well.

    $foo = 'S25 22.087 E152 46.125';
    $matches = array();
    if (preg_match('/^([NS].*)\s([EW].*)$/', $foo, $matches)) {
        var_dump($matches); // $matches[1] = 'S25 22.087'; $matches[2] = 'E152 46.125'
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a few strings(about 100) and I want to store them in a
I'm just starting with programming. I have a list of a few strings and
I have a few unit tests that require very large strings for the test
I have the following data that basically I only need a few bits of
I have a few regular expressions which are run against very long strings. However,
I'm learning Python (with Python 3.2) and have been following a few manuals. In
I have multiple different keys generated in the following format: 71 1 2, 69
I have the need to check whether strings adhere to a particular ID format.
Say I have a few string like Hi my name is <Name> Hi <name>,
I have a string built from a few segments, which are not separated, but

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.