Tagged Questions

preg_split() is a PHP function which allows splitting a string using a regular expression.

learn more… | top users | synonyms

28
votes
3answers
570 views

Split string by delimiter, but not if it is escaped

How can I split a string by a delimiter, but not if it is escaped? For example, I have a string: 1|2\|2|3\\|4\\\|4 The delimiter is | and an escaped delimiter is \|. Furthermore I want to ignore ...
5
votes
2answers
199 views

Regex to match comma not between grouping symbols

I need a regular expression that will match a comma that is NOT between either a '[' and ']' or '(' and ')' or '{' and '}'. Other grouping symbols do not matter. I have tried to figure it out but I ...
4
votes
4answers
59 views

Best way to handle splitting a Windows or Linux path

I have two Strings: C:\Users\Bob\My Documents /Users/Bob/Documents I have managed to conjure this regex: preg_split('/(?<=[\/\\\])(?![\/\\\])/', $string) that will return Array ( [0] ...
3
votes
4answers
105 views

PHP preg_split: Split string by other strings

I want to split a large string by a series of words. E.g. $splitby = array('these','are','the','words','to','split','by'); $text = 'This is the string which needs to be split by the above words.'; ...
3
votes
3answers
70 views

regular expression preg_split by new line

this is my file: 0.0 5.0 5.0 6.0 7.0 2.0 5.0 2.0 1.0 5.0 5.0 1.0 2.0 7.1 5.0 5.0 0.0 5.0 5.0 5.0 2.0 5.0 1.0 5.0 6.0 6.0 6.0 6.0 1.0 7.1 5.0 5.0 0.0 6.0 1.0 6.0 5.0 5.0 1.0 6.0 5.0 7.0 1.0 5.0 6.0 ...
3
votes
1answer
599 views

php preg_split last occurrence of character

Looking for some help! I need to split a string at the last occurrence of a space... e.g. "Great Neck NY" I need to split it so I have "Great Neck" and "NY" I haven't had a problem using ...
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
1answer
107 views

How to exclude string from preg_split when string already contains splittable character in PHP?

I am using the preg_split function in PHP in order to create one array containing several different elements. However, I want to exclude a string which happens to contain one of the elements that I'm ...
2
votes
2answers
146 views

PHP preg_split IPs in a string

I am trying to use preg_split in PHP to break up the following string and return me the 2 ip addresses: $membersStr = "members { 167.69.27.151:4449 {} 167.69.27.153:4449 {} 167.69.27.154:4449 { ...
2
votes
3answers
103 views

Regex for space, but not escaped spaces

I am parsing the input of ls -lb and trying to put each field into an array in PHP. My input looks something like this: -rwx------ 1 user.name users 546879 2008-09-05 09:23 ...
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
3answers
36 views

PHP preg_split() not capturing the split in the string

I'm trying to use a regex with preg_split to separate a url from a string: $body = "blah blah blah http://localhost/tomato/veggie?=32"; $regex = ...
1
vote
1answer
25 views

Print array from a preg_split

Hi I trying to print the content of a array. This is the code: while ($row = mysql_fetch_assoc($result)) { $pattern = '[<td[^>]*>(.*?)</td>]'; $content = preg_split( ...
1
vote
1answer
35 views

php preg_split: how now to include all regex for splitting?

Given the following sentence: The is 10. way of doing this. And this is 43. street. I want preg_split to give this: Array ( [1] => "This is 10. way of doing this" [2] => "And this is 43. ...
1
vote
3answers
51 views

How to explode a string by any integer? Regex?

This seems like it must be so simple, but regular expressions are extremely confusing to me. I am grabbing $_GET variables that will look like typeX, optionX, groupX, etc. where X equals any positive ...
1
vote
2answers
66 views

preg_split string to multidimensional array

Hello just looking for some help as I've gotten stuck I have two Strings: C:\Users\Bob\My Documents /Users/Bob/Documents That gets put through preg_split('/(?<=[\/\\\])(?![\/\\\])/', $string) ...
1
vote
1answer
51 views

problem capturing delimiter with preg_split

I have a pipe-delimited dump file from an SQL Server, and I want to import it into MySQL. The lines are delimited by \r\n, and that sequence also occurs in some fields! So I want to use a regular ...
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
2answers
52 views

PREG_ or Regex Question

I'd like to match the last instance of / (I believe you use [^/]+$) and copy the contents of the next four or less numbers until I get to a dash -. I believe the "right" method to return this number ...
1
vote
3answers
144 views

Split string PHP

I have never understood the pattern of regular expression and after googling I haven't been any wiser. I want to grab the WordPress version number (3.2) from this string: <meta name="generator" ...
1
vote
2answers
120 views

preg_split() and implode() newbie help please (trying to do tags right)

I am using some ready-made code and it was using implode & explode functions to assign tags to photos, tags users typed in. It was not doing it right though, as if you tried a two word tag, it was ...
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
139 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
5answers
133 views

Convert list of Function Arguments to an Array

I'm working on a CMS, and I'm looking for a way to convert a list of function arguments, into an array. For example: function testfunction($param1, $param2){ $string = "Param1: $param1 Param2: ...
1
vote
3answers
106 views

PHP preg_split string into letter pairs

I'm having way too much trouble with this simple problem: split a string into an array of 2-character values, i.e. $string = 'abcdefgh'; // With the correct regex, should return ...
1
vote
2answers
122 views

preg_split() problem with strings containing '&'

I am using preg_split() to get array of sentence from a string. $sentences = preg_split("/([.?!\r\n]+)/", $text, 0, PREG_SPLIT_NO_EMPTY|PREG_SPLIT_DELIM_CAPTURE); But when $text contains '&', ...
1
vote
2answers
173 views

Extract whatever is in brackets using regular expressions

I really don't understand regex at all, and it hurts my head. I've a bit of text which looks like this blah blah blah (here is the bit I'd like to extract) ...and I don't really understand how to ...
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
171 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
2answers
257 views

Using preg_split to split with a delimiter OR every x characters

Hello ||||overflow crowd :) I'm afraid I couldn't find an answer anywhere, so here goes: My code: $stuff = '00#00#e0#12#ff#a3#00#01#b0#23#91#00#00#e4#11#ff#a2#'; //not exact, just a random example ...
1
vote
1answer
54 views

Having problems with regular expressions with preg_split in PHP

I have the following input: a few words - 25 some more - words - 7 another - set of - words - 13 And I need to split into this: [0] = "a few words" [1] = 25 [0] = "some more - words" [1] = 7 [0] ...
1
vote
2answers
100 views

php preg_split functionality

is there a way to understand the following logic contained in the splitting pattern: preg_split("/[\s,]+/", "hypertext language, programming"); in the grand scheme of things i understand what it ...
1
vote
1answer
474 views

PHP: preg_split

Hey guys, I need help on regular expression here. I want PHP to be able to splits a string in sections of arrays such that a substring enclosed by <%me %> will be in its own slot. So for example, ...
1
vote
4answers
2k views

PHP REGEX - text to array by preg_split at line break

EDITED: need help on split Array array example: array ( [0] => :some normal text :some long text here, and so on... sometimes i'm breaking down ...
1
vote
1answer
481 views

preg_split commas not inside parenthesis

Test string: Organic whole wheat bread, Monterey Jack Cheese (milk, cheese culture, salt), Hormel Natural Ham (salt, turbinado sugar, lactic acid (not from milk) Desired output: Array ( ...
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 ...
1
vote
2answers
131 views

problems with text parsing using preg_split

I write some easy parser for my page and have some problem with it. HTML text: <p>some text</p><p>another text</p> If I try use something like: ...
0
votes
0answers
20 views

Splitting large strings into words in php

I have a long string in php consisting of different paragraphs each of which with different sentences (it is pretty much a small document). I want to split the whole thing into words by removing any ...
0
votes
2answers
58 views

php split string into array by date (yyyy-mm-dd)

I have a plain text journal I'm trying to format in php. I'd like to split each entry into an array containing date and text. Using preg_split I can do this, however it removes the date altogether! ...
0
votes
2answers
36 views

Using Preg Match to line break full row of text by timestamp

I'm not sure how to explain this but I'll try my best. I have a full line of text that I'm reading from an API using SoapClient with PHP. When I'm getting the data it's putting all of the data on one ...
0
votes
2answers
39 views

PHP: preg_match and group repetition

How I can get all matched objects in a group using preg_match (or preg_match_all, maybe)? For instance, I have ^(?:,?\s*(?<key>[a-z]))+$, if I apply to a, b, c, I get this: object array 0 ...
0
votes
3answers
41 views

php preg_split multiple delimiters

I want to split using multiple delimiters including -:|/. Here is my current code: preg_split( "/ [-:|] /", $body); Now I have problem with /. Any ideas?
0
votes
3answers
51 views

Regex to split alphanumeric, currency and numeric terms in PHP

I am trying to split a string into terms in PHP using preg_split. I need to extract normal words ( \w ) but also currency ( even currency symbol ) and numeric terms ( including commas and decimal ...
0
votes
5answers
69 views

Replace empty spaces with ### from Text between “ ” in a string in PHP

I have a string like this one text more text "empty space". How can I replace the space in "empty space" and only this space with ###?
0
votes
5answers
43 views

php preg_split text

Hopefully a simple problem but cant find the solution anywhere. If I want to take any charactors before the "v" how would I do it? Example: Chelsea v Aston Villa - Match Betting; I cant take the ...
0
votes
2answers
73 views

preg_split() a string of tags delimited by commas, double quotes, or spaces

I'm trying to preg_split() a string of tags delimited by commas, double quotes, or spaces. This is the code I have so far. The idea is to make it as easy as possible for the user to input tags ...
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
65 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
2answers
34 views

Count Preg Split Rows?

Is it possible to count the amount of items prepared from the preg_split function? Example: Lets Say $_REQUEST['p'] = Index/Home $str = preg_split('(/)', $_REQUEST['p']); So: $str[0] = Index ...
0
votes
0answers
46 views

Need to split HTML with regex by special delimiter [closed]

I need to split an HTML file, that is being created in Word, by a delimiter, which in this case is these characters: [section]. The HTML is cleaned before it gets to this point by removing line breaks ...

1 2