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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 29, 20262026-05-29T23:16:09+00:00 2026-05-29T23:16:09+00:00

I have a variable called $name and it contains something like this: $name =

  • 0

I have a variable called $name and it contains something like this:

$name = 'FName_LName_DataX_Number_www.website.com';

I want to put all the data before the Number in an array withouth the underscores and the Number value too.

Something like this:

$array[0] = 'Fname Lname DataX';
$array[1] = 'Number';

$name examples:

$name = 'Roberto_Carlos_01_www.website.com';
$name = 'TV_Show_Name_785_www.website.com';
  • 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-29T23:16:11+00:00Added an answer on May 29, 2026 at 11:16 pm

    Your problem is special to use regular expressions. But at any time that someone gives that kind of solution another someone say regular expressions are evil!. So let’s play a little:

    $index  = 0;
    $array  = array();
    $array0 = array();
    $array1 = array();
    
    $name = 'FName_LName_DataX_002_www.website.com';
    
    $aux = explode('_', $name);
    
    if (is_array($aux))
    {
        foreach ($aux as $key => $value)
        {
            if (is_numeric($value))
            {
                $index = $key;
                break;
            }
        }
    
        foreach ($aux as $key => $value)
        {
            if ($key >= $index)
            {
                $array1[] = $value;
                break;
            } else
            {
                $array0[] = $value;
            }
        }
    
        $array[0] = implode(' ', $array0);
        $array[1] = implode(' ', $array1);
    }
    
    $name = 'TV_Show_Name_785_www.website.com';
    result: 
    array (
      0 => 'TV Show Name',
      1 => '785',
    )
    
    $name = 'FName_LName_DataX_002_www.website.com';
    result: 
    array (
      0 => 'FName LName DataX',
      1 => '002',
    )
    
    $name = 'Roberto_Carlos_01_www.website.com';
    result: 
    array (
      0 => 'Roberto Carlos',
      1 => '01',
    )
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a PHP-variable called $go_Adress which contains the adress I need to get
Say I have stored a query in a variable called $query. I want to
I have a huge dictionary of blank values in a variable called current like
I have a MySQL database called People which contains the following schema <id,name,foodchoice1,foodchoice2> .
Morning all! My MySQL query returns a PHP variable name which I'd like to
I have a class Topic and Group which both have a variable called 'name',
The scenario would be: you have a variable called person which contains a number
I have a global variable called 'name', when a user clicks on a button
I have got a variable which contains function hierarchy like: string str= fun1(fun2(),fun3(fun4(fun5(34,33,'aa'),'value',fun6())) //
Say you have a variable called hotelPropertyNumber . The contents will always be a

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.