Tagged Questions

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
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
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
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
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
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
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
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
70 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
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
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 ...
0
votes
3answers
62 views

preg_split : Get first word in a line

Can you please help assemble a regex to be used in preg_split which will split a string on it's first word - case insensitive (up until the first space).
0
votes
2answers
64 views

preg_split string into tokens

I'm trying to write a regex with which I can split a string into tokens. This used to work: $rawtokens = split("[^-_A-Za-z0-9]+", $string); But now split() has been deprecated (and using preg_split ...
0
votes
2answers
102 views

split string in php using regex

how can I split this string: |^^^*|^^^*|^^^*|^^^*|^^^*|myvalue^nao^nao^nao*|myvalue^nao^nao^nao*|myvalue^nao^nao^nao*|^^^*|^^^*|^^^*|^^^*|^^^*|^^^*|^^^*|^^^*|^^^*|^^^*|^^^*|^^^* so I can only get ...
0
votes
0answers
80 views

split html by comment with php or grep

The answer: As mario suggests, $parser is an Object. I checked this by simply using print_r: print_r($parser); I had to employ preg_split() before using the parser. The original question: I'm ...
0
votes
2answers
75 views

preg_split regex help

In the processPage function below, I'm grabbing the keywords from the keywords metatag of each URL processed. I need to alter the preg_split so that it only pulls the first three words of any keyword ...
0
votes
2answers
54 views

fixing a php tokenizing pattern

i have a Perl script which tokenize a string @s=split /([^a-zA-Z \t\-\'\,\.]+)/, $_[0]; # tokenized with separators so if i have a string $s="The large [[bear]] is dangerous." it will return ...
0
votes
3answers
85 views

php separating words by using regex

I have a string and it contains some words that I want to reach, seperators can be any string that consist of , ; or a space. Here is a example: ;,osman,ali;, mehmet ;ahmet,ayse; , I need to take ...
0
votes
1answer
346 views

php preg_split() to find text inbetween two words

how do I use preg_split() to grab the value between [item:1] and [/item:1] $query= [item:1] my content [/item:1]; This isn't working $match = preg_split('/[[item:1][\/item:1]]/', $query); echo ...
0
votes
2answers
85 views

preg_split results in connection reset

preg_split("/({{\s*(?:(?!}}).)+\s*}})/s", file_get_contents('data.txt')); That line makes Apache reset the connection. data.txt is approximately 12 kB. What am I doing wrong, can I optimize the ...
0
votes
1answer
336 views

preg_split using PREG_SPLIT_DELIM_CAPTURE

I was looking to split a string based on a regular expression but I also have interest in keeping the text we split on: php > var_dump(preg_split("/(\^)/","category=Telecommunications & ...
0
votes
3answers
97 views

Retain Delimiters when Splitting String

Edit: OK, I can't read, thanks to Col. Shrapnel for the help. If anyone comes here looking for the same thing to be answered... print_r(preg_split('/([\!|\?|\.|\!\?])/', $string, null, ...
0
votes
1answer
638 views

Using preg_split on alpha-numeric string in PHP

Consider the string 12345aaa. I want to use preg_split() on it so only the numeric part of it will be returned (i.e. 12345). How would I write the regex for it ? Thank you in advance !
0
votes
5answers
304 views

Converting big String back to Array - PHP

[Check My EDIT for better Explanation] I need some help with a very big string i have. Its like this: $big_string = "TinteiroID:1#TinteiroLABEL:HP ...
0
votes
4answers
709 views

PHP preg_split if not inside curly brackets

I'm makin' a scripting language interpreter using PHP. I have this code in that scripting language: write {Hello, World!} in either the color {blue} or {red} or {#00AA00} and in either the font ...
-1
votes
4answers
34 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 ...