Tagged Questions
The explode tag has no wiki summary.
7
votes
5answers
387 views
PHP explode and set to empty string the missing pieces
What's the best way to accomplish the following.
I have strings in this format:
$s1 = "name1|type1"; //(pipe is the separator)
$s2 = "name2|type2";
$s3 = "name3"; //(in some of them type can be ...
7
votes
3answers
287 views
Why can't I access the exploded array element immediately?
Why can't I immediately access elements in the array returned by explode()?
For example, this doesn't work:
$username = explode('.',$thread_user)[1];
//Parse error: syntax error, unexpected '[
...
6
votes
4answers
8k views
PHP: Split string into array, like explode with no delimiter
I have a string such as:
"0123456789"
and need to split EACH character into an array.
I for the hell of it tried:
explode('', '123545789');
But it gave me the obvious: Warning: No delimiter ...
5
votes
4answers
132 views
php - string trim
Please help me on this.
$str = "col_1 col_2 col_3
row1 row2 row3
row12 row22 row33";
$arr = explode("\n", $str);
foreach($arr as $line)
{
$temp_arr = explode(WHAT HERE, $line);
...
5
votes
4answers
336 views
Sorting entities and filtering ListProperty without incurring in exploding indexes
I'm developing a simple Blogging/Bookmarking platform and I'm trying to add a tags-explorer/drill-down feature a là delicious to allow users to filter the posts specifying a list of specific tags.
...
5
votes
3answers
328 views
Parsing: library functions, FSM, explode() or lex/yacc?
When I have to parse text (e.g. config files or other rather simple/descriptive languages), there are several solutions that come to my mind:
using library functions, e.g. strtok(), sscanf()
a ...
5
votes
1answer
401 views
PHP explode on null character
I am trying to explode a string on what looks like to be a null character.
This is what is what I am using: $exp = explode('\x00', $bin);.
Though this does not work. However, if I do $exp = ...
5
votes
3answers
3k views
Exploding by Array of Delimiters
Is there any way to explode() using an array of delimiters?
PHP Manual:
array explode ( string $delimiter , string $string [, int $limit ] )
Instead of using string $delimiter is there any ...
4
votes
9answers
224 views
Shortcut for: $foo = explode(“ ”, “bla ble bli”); echo $foo[0]
is there a way to get the n-th element of a splitted string without using a variable?
My PHP code always looks like this:
$foo = explode(" ", "bla ble bli");
echo $foo[0];
Is there a shorter way ...
4
votes
2answers
270 views
Split into two variables?
Say I have the following: "44-xkIolspO"
I want to return 2 variables:
$one = "44";
$two = "xkIolspO";
What would be the best way to do this?
4
votes
5answers
127 views
How do I change the delimiter of a list?
$variable = 'one, two, three';
How can I replace the commas between words with <br>?
$variable should become:
one<br>
two<br>
three
4
votes
6answers
229 views
How to use the explode function in PHP using 2 delimeters instead of 1?
Suppose I have the following:
$string = "(a) (b) (c)";
How would I explode it to get the contents inside the parenthesis. If the string's contents were separated by just one symbol instead of 2 I ...
4
votes
5answers
1k views
Explode string by one or more spaces or tabs
How can I explode a string by one or more spaces or tabs?
Example:
A B C D
I want to make this an array.
3
votes
2answers
30 views
csv parsing, exploding avoiding “”
I have a csv file (really big) that I'm parsing with php.
Now is made like this.
x,y,z,value,etc
but sometimes there is this:
x,"blah,blah,blah",z,value,etc
doing this: explode(',',$string);
In ...
3
votes
2answers
93 views
Getting Data From Multi-level Array
Question below.
This is the solution I came up with based on Pixeler's answer.
<?php
$i = 0;
foreach ($array as $k1 => $v1) {
if (is_array($v1)) {
echo $k1."<br />";
...
3
votes
4answers
88 views
$_POST a input value in two parts (explode?)
I'm really new to PHP, so this is probably a pretty dumb question.
I'm using PHP to submit an email form, and would like the email to contain the values of some of the form's inputs. Here's a ...
3
votes
4answers
168 views
Counting the number of times a character occurs in a string in C
I'm new to C, and I'm working on my own explode like function. I'm trying to count how many times a specified character occurs in a string.
int count_chars(char * string, char * chr)
{
int count ...
3
votes
4answers
175 views
Code to find strings in source code over many urls
I want to enter a very long list of urls and search for specific strings within the source code, outputting a list of urls that contain the string. Sounds simple enough right? I have come up with the ...
3
votes
3answers
326 views
php vs javascript speed for processing information
I have a database that contains strings in the format:
"key:value|key:value|key:value|key:value"
Due to some other reasons, I can not have the key value pairs stored in the database.
Should I use ...
3
votes
6answers
791 views
how to remove comma white space during explode and replace?
$data = "google,facebook,youtube,twitter,bing";
$exp = explode(",",$data);
$rep = str_replace("facebook",$exp);
$final = implode(",",$rep);
echo $final
output// google,,youtube,twitter,bing
How ...
3
votes
1answer
2k views
Split a MYSQL string from GROUP_CONCAT into an ( array, like, expression, list) that IN () can understand
This question follows on from MYSQL join results set wiped results during IN () in where clause?
So, short version of the question. How do you turn the string returned by GROUP_CONCAT into a ...
3
votes
1answer
142 views
jQuery Explode changes fonts while exploding, how do I stop this?
Go to http://hartford.uconn.edu/scholarships/ click on any name, then click on "close" button which will show you that while "exploding" the fonts change from default "Trebuchet MS/ Trebuchet" to ...
3
votes
3answers
234 views
Explode a string to an array
Probably easy to do but I can't seem to generate the correct regex.
Say I have this string
$string = '<h2>Header 1</h2><p>ahs da sdka dshk asd haks</p><img ...
3
votes
6answers
1k views
MySQL (exploding/matching array)
Question1:
MySQL table
id | array
1 | 1,2,3
2 | 2
3 | 2,3
4 | 4,5,6
$_GET['id'] = 2;
$a = mysql_query("SELECT * FROM `table` WHERE `array` ??? '$_GET[id]'");
In this step, I want to run ...
3
votes
4answers
109 views
PHP Question - How to create an array out of a string?
In my database, some field settings are serialized and stored. When I do this:
print_r(unserialized($r['settings']));
I'll get this:
Array (
[prefix] =>
[suffix] =>
[min] =>
[max] ...
3
votes
6answers
476 views
Exploding a String In PHP
How do i explode this string '||25||34||73||94||116||128'
i need to have a array like this
array (
0 => '25',
1 => '34',
2 => '73',
3 => '94',
4 => '116',
5 => '128'
)
...
3
votes
3answers
2k views
PHP explode the string, but treat words in quotes as a single word
How can I explode the following string:
Lorem ipsum "dolor sit amet" consectetur "adipiscing elit" dolor
into
array("Lorem", "ipsum", "dolor sit amet", "consectetur", "adipiscing elit", "dolor")
...
3
votes
3answers
446 views
Explode and get a value in one line of code
Can you write the following in one line of code?
$foo = explode(":", $foo);
$foo = $foo[0];
3
votes
9answers
1k views
Explode over every other word
Lets say I have a string:
$string = "This is my test case for an example."
If I do explode based on ' ' I get an
Array('This','is','my','test','case','for','an','example.');
What I want is an ...
2
votes
2answers
48 views
PHP: do an ORDER BY using external data?
Ahoy all! Long story short with this one if you don't mind lending a hand to this novice PHPer. :)
I have a database field called "Categories" that has this stored:
Fruit, People, Place, Animals, ...
2
votes
5answers
57 views
Should I use explode, split, and/or trim; and how?
I'd like to get some values out of this:
$bounds = '((-34.41859810454894, 150.5594567718506), (-34.375112955999064, 150.74124617004395))';
My goal is to list each of the four numbers as its own ...
2
votes
3answers
113 views
Multi word search in PHP/MySQL
I'm struggling to create a search that searches for multiple words. My first attempt yielded no results whatsoever and is as follows:
require_once('database_conn.php');
if($_POST){
...
2
votes
4answers
67 views
Exploding strings in PHP
I have the following bit of PHP code.
Ultimately, I'd like to store <p>Michael is 26</p> in the $str1 variable and <p>He likes green cars.</p><p>And white ...
2
votes
3answers
94 views
Add a prefix to each item of a PHP array
I have a PHP array of numbers, which I would like to prefix with a minus (-). I think through the use of explode and implode it would be possible but my knowledge of php is not possible to actually do ...
2
votes
1answer
88 views
PHP - Splitting a string with two parameters
I'm trying to split a string received from a $_GET in PHP, but I'm stuck, as it's more than the explode() function will handle - or so I think.
If the string I receive contains quotations marks ...
2
votes
3answers
79 views
php custom parse a string with preg
My methods parse strings and do stuff with the information contained in the string.
a simple example would be
$string=
"
user:name,password={$_POST['name']}, {$_POST['password']}(md5);
...
2
votes
4answers
75 views
How to explode this string into an array like this?
I'm trying to break up this string,
AFRIKAANS = af
ALBANIAN = sq
AMHARIC = am
ARABIC = ar
ARMENIAN = hy
AZERBAIJANI = az
BASQUE = eu
BELARUSIAN = be
BENGALI = bn
BIHARI = bh
BULGARIAN = bg
BURMESE = ...
2
votes
2answers
45 views
Is it possible to have 3 delimiters for the explode function
Option 1 (spaces)
keyword keyword keyword
Option 2 (line breaks)
keyword
keyword
keyword
Option 3 (commas)
keyword, keyword, keyword
Or would I have to use the split function instead? And if ...
2
votes
2answers
329 views
How to explode a multi-line string?
PHP - I have a string that has different values on each line:
$matches="value1
value2
value3
value4
value5
";
I want to explode the whole string in to an array consisting of the values separeted. I ...
2
votes
7answers
252 views
PHP Insert Multiple Spaces
I've got some data that needs to be cleaned up into a fixed length format. I'm using PHP to grab the data out, covert it, and put it back in, but it's not working as planned. There is a certain point ...
2
votes
4answers
85 views
Is there a way to select the first word/combo of characters in a string, separated by spaces?
For instance, I'm trying to select the first word in this string:
"chocolate muffin"
So I want "chocolate", but not the " " (space) and not the "muffin" text.
I imagine I could do $separate = ...
2
votes
5answers
183 views
PHP Explode exclude
I have a string with data like this:
8487613 1298296324 1a6ad892e547da07f35221fdfe6f70dd "|MoDo|" 178.211.28.126 "Battlefield Bad Company 2" "BC Stuff and name" "Violation (AIMBOT) #50246"
In my ...
2
votes
3answers
90 views
Switch placement of values in comma delimited string
I have a comma delimited string held within a database field that could contain any number of values:
23,45,21,40,67,22
I need to be able to somehow switch two values, so for example I know I need ...
2
votes
5answers
2k views
Php multiple delimiters in explode
I have a problem, I have a string array, and I want to explode in different delimiter. For Example
$example = 'Appel @ Ratte';
$example2 = 'apple vs ratte'
and I need an array which is explode in @ ...
2
votes
2answers
716 views
How do I explode an integer
the answer to this could be easy. But I'm very fresh to programming. So be gentle...
I'm at work trying to do a quick fix for one of your customers. I want to get the total numbers of digits in a ...
2
votes
4answers
223 views
Is there a way to explode a cell value within a mysql statement
I have column in table where i store tag ids as 1|5|10
I want to explode the column using mysql query
2
votes
1answer
664 views
Multiple explode characters with comma and - (hyphen)
I want to explode a string for all:
whitespaces (\n \t etc)
comma
hyphen (small dash). Like this >> -
But this does not work:
$keywords = explode("\n\t\r\a,-", "my string");
How to do that?
2
votes
2answers
211 views
Help with exploding a name in PHP and writing back into a .CSV file
I wrote the code below to split up a fullname from a .csv file into a first name, middle name, and last name. It works well and gives the following kind of output:
Eric,T.,Nolan
Mary,,Worth
...
2
votes
3answers
83 views
Improve my code : Distributing the content of a textarea in two different arrays depending on markers
I have a textarea where the user can create a feature list with a title for each block of features. The idea is to store the [title] and the features in two different MySQL tables.
[Outdoor]
BBQ
...
2
votes
2answers
125 views
How to merge data using php
Currently my MySQL data stored like below
product | total
------------------------------------------
puma,adidas | 100.00,125.00
puma | 80.00
...