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 8126215
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T07:04:53+00:00 2026-06-06T07:04:53+00:00

i have a string like this one $sitesinfo = ‘site 1 titles-example1.com/ site 2

  • 0

i have a string like this one

$sitesinfo = 'site 1 titles-example1.com/
site 2 titles-example2.com/
site 3 titles-example3.com/
site 4 titles-example4.com/
site 5 titles-example5.com/';

i used to split lines into 1 array like this

$lines = explode("/",$sitesinfo);

then while i loop i got each line into an array object without problems
what i need to do to split each line into 2 pieces and add each piece into an array so the result be like this

$titles = array("site 1 titles","site 2 titles","site 3 titles","site 4 titles","site 5 titles");
$domains = array("example1.com","example2.com","example3.com","example4.com","example5.com");

so i can use them in script

i did a lot of tries but fail 🙁

Thanks

  • 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-06-06T07:04:55+00:00Added an answer on June 6, 2026 at 7:04 am

    How about this:

    foreach ($lines as $line) {
      $t = explode('-', trim($line), 2);
      if (count($t) < 2) {
        echo "Failed to parse the line $line";
        continue;
      }
      $titles[] = $t[0];
      $domains[] = $t[1];
    }
    

    Explanation: each line split by ‘-‘ symbol into exactly 2 parts (if there’s less, that’s an error – the line doesn’t contain ‘-‘, and thus shouldn’t be processed at all). The first part is pushed into $titles array, the second – into $domains.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a list like this Dim emailList as new List(Of String) emailList.Add(one@domain.com) emailList.Add(two@domain.com)
Suppose I have a string like this: one two three four five six seven
I have a ComboBox with a label function like this one: private function fieldLabelFunction(item:Object):String
I have a string like this one: traceroute <ip-address|dns-name> [ttl <ttl>] [wait <milli-seconds>] [no-dns]
I have a string like this one Servi\u00e7os e Inform\u00e1tica How can i convert
I have a string like this one text more text empty space . How
So I have a Python code which returns a JSON string like this one:
I have made a string like this one.. NSString *loadString = [NSString stringWithFormat:@<html><body bgcolor=\red\><font
Lets say I have string like this: String q = foo (one) bla (two)
I have the following problem in AS3. I have a string like this one:

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.