Tagged Questions

2
votes
2answers
2k views

php preg_split error when switching from split to preg_split

I get this warning from php after the change from split to preg_split for php 5.3 compatibility : PHP Warning: preg_split(): Delimiter must not be alphanumeric or backslash the php code is : ...
1
vote
4answers
64 views

Split the output in PHP

I'm trying to use either split, preg_split, or explode to parse the following data into an array so that I can easily print and modify the data: 28782188 /var/opt When I run ...
1
vote
3answers
102 views

Break a string into parts, returning all characters

I want to break a string according to the following rules: all consecutive alpha-numeric chars, plus the dot (.) must be treated as one part all other consecutive chars must be treated as one part ...
1
vote
1answer
137 views

split to preg_split?

after 10 years with php i still S*** in regex , could you please help me converting this $x_ary=split('&x=',$url); to the preg_split equivalent ? Thank you
1
vote
1answer
2k views

php split to preg_split

i wanted to convert following split function, which i been using to preg_split.. its little confusing, because the value will change time to time.. current code: $root_dir = 'www'; $current_dir = ...
1
vote
3answers
168 views

Split a string at “;” with php

I have a string called $gallery, $gallery is a list of image URLS The image urls are seperated by a semi- colon ;. Example ...
1
vote
4answers
256 views

Splitting up html code tags and content

Does anyone with more knowledge than me about regular expressions know how to split up html code so that all tags and all words are seperated ie. <p>Some content <a href="www.test.com">A ...
0
votes
8answers
64 views

PHP Extract numbers from a string

I want to extract numbers from a string in PHP like following : if the string = 'make1to6' i would like to extract the numeric character before and after the 'to' substring in the entire string. i.e. ...
0
votes
2answers
63 views

I am trying to split/explode/preg_split a string but I want to keep the delimiter

I am trying to split/explode/preg_split a string but I want to keep the delimiter example : explode('/block/', '/block/2/page/2/block/3/page/4'); Expected result : array('/block/2/page/2', ...
0
votes
3answers
453 views

Using explode, split, or preg_split to store and get multiple database entries

I'm trying to figure out how and which is best for storing and getting multiple entries into and from a database. Either using explode, split, or preg_split. What I need to achieve is a user using a ...
0
votes
4answers
54 views

PHP Split Problem

I am trying to use (and I've tried both) preg_split() and split() and neither of these have worked for me. Here are the attempts and outputs. preg_split("^", "ItemOne^ItemTwo^Item.Three^"); //output ...