preg_split() is a PHP function which allows splitting a string using a regular expression.
3
votes
1answer
45 views
Convert nested text to strings
I'm at the moment using PHP but I suppose there are other coding languages that would handle this problem better. If you have any suggestions on other coding languages that might work better, please ...
1
vote
2answers
33 views
Regular expression needed for PHP preg_split
I need help with a regular expression in PHP.
I have one string containing a lot of data and the format could be like this.
key=value,e4354ahj\,=awet3,asdfa\=asdfa=23f23
So I have 2 delimiters , and ...
0
votes
1answer
96 views
PHP - How can I ignore “XXX” titles in my data parsing script?
I've tried and it doesn't seem to work. Any help would be greatly appreciated.
CODE:
foreach (glob('mov/Alene*.mov') as $filename){
$theData = file_get_contents($filename) or die("Unable to ...
1
vote
1answer
28 views
Splitting a URL
I'm trying to split the following URL format: https://www.facebook.com/media/set/?set=a.10150495063500716.644503.10150093906460716&type=3
I'm trying to get the first number, between 'a.' and the ...
-4
votes
1answer
40 views
Stored Procedure to Array [closed]
im having trouble with making my Stored Procedure to an array.
The given SP:
call my_store ( 'Test', '1', '2' )
Now i want the variables of a stored procedure in an array like:
[0] = 'Test'
[1] ...
0
votes
1answer
54 views
Php Extracting text between the characters
I get a response from a source in the string as
page <a href="${CLICK_URL}" target="_top">site not active</a>
I need to extract this data to an array as:
Array
(
[0] => page
...
1
vote
3answers
40 views
php: split string until first occurance of a number
i have string like
cream 100G
sup 5mg Children
i want to split it before the first occurrence of a digit. so the result should be
array(
array('cream','100G'),
array('sup','5mg Children')
...
0
votes
2answers
30 views
PHP preg-split text-string telephone-numbers
please help me with the following problem:
$my_string = 'here is some text and my number: +43 (0) 123 456 - 78 and
some more text and a different number + 43(0) 1234/ 567-789 and
a ...
1
vote
1answer
29 views
php preg_split how to split by hr
I want to split some text using php preg_split by strings like:
<hr style="text-align: justify;"> or
<hr> or
<hr style="other style here">
for example text like: "text ...
1
vote
1answer
121 views
Split a text into sentences
How can I split a text into an array of sentences?
Example text:
Fry me a Beaver. Fry me a Beaver! Fry me a Beaver?
Fry me Beaver no. 4?! Fry me many Beavers... End
Should output:
0 => ...
2
votes
4answers
58 views
PHP Regex correct syntax preg_split after any number of words and 1-3 digits
I'm trying to break down a rss feed with sports scores
Example data
San Diego 4 Chicago Cubs 2
Miami 2 Philadelphia 7
Boston 3 Toronto 1
Washington 3 Atlanta 1
Chicago Sox 3 Texas 1
St. Louis 6 ...
0
votes
1answer
34 views
preg_split using PREG_SPLIT_DELIM_CAPTURE with an array of delims
Note: I recently asked this question but it turns out the solution I'm looking for is more advanced than I initially thought.
Using preg_split, how would I split this up, note that the string before ...
0
votes
1answer
51 views
Opposite of a Regex
The rules of the regex are simple:
Split by NOT: a whitespace " " followed by 'OR' or '|' :
Example:
"thing to say" france (true)
"thing to say" OR thing (false)
"thing to say" | thing (false)
...
0
votes
1answer
18 views
Preg_split screws up the BR tag?
I am struggling with this one for half a day now and i can't seem to get it right. I have a custom function in my wordpress site, that automatically creates an excerpt. This all goes well, but for ...
3
votes
1answer
37 views
Regular expression to split a string except in URLs
I need to split a string on any non-alphanumeric character except / and -. For example, in preg_split():
/[^a-zA-Z0-9\/\-]/
This works great, but now I want to split the string at all these points ...
2
votes
2answers
68 views
PHP preg_split regex does not split with dot
I'm using the following regex to split a string to an array. Everything goes fine but for some reason it does not the splitting with \.(space). How would i need to change it to make it work?
...
2
votes
1answer
62 views
Explode string after price
Say I have a string
$what = "1 x Book @ $20 32 x rock music cd @ $400 1 x shipping to india @ $10.5";
And I want to explode so that output is
Array
(
[0] => 1 x Book @ $20
[1] => ...
0
votes
3answers
110 views
Preg_split or preg_match
I have a little problem i need to sort. I want to either remove a part of a string or split it.
So basically i have this: One-1, Two-2, Three-3
What I want to end up doing is splitting into 2 ...
0
votes
2answers
26 views
seperate string based on shortcodes
I need a preg function which do the following job for following string-
string = {my_special_shortcode_name var1='some_var1' var2='some_var2' var3='some_var3'}
and the extracted string must look ...
0
votes
4answers
161 views
PHP preg_split delimiter pattern, split at character chain
With the following string:
$str = '["one","two"],a,["three","four"],a,,a,["five","six"]';
preg_split( delimiter pattern, $str );
How would I have to set up the delimiter pattern to obtain this ...
2
votes
6answers
61 views
How to break down a string inside array into more arrays PHP
Basically I have an array with several string as values (not associative array). I need to get particular parts of each string and transform it into an array with two values.
Here's the structure of ...
0
votes
2answers
60 views
preg_split disabled on a free server? [closed]
I'm developing a PHP script which use the preg_split function. In my computer, using EasyPhp everything works but when I put the files on-line on a free space the function preg_split seems not to work ...
0
votes
1answer
49 views
split a string on semicolons taking into account strings and escaped quotes or semicolons
I'm still trying to figure out a way to take into account escaped quotes like "test\";nosplit" or 'test\';nosplit'
So far I have something like this:
preg_split('#(^;)|(;$)|(?<!["\'\\]);#', ...
2
votes
1answer
61 views
PHP preg_split utf8 characters
Have problem with preg split and utf. This is code:
$original['words'] = preg_split("/[\s]+/", $original['text']);
print_r($original);
This is answer:
Array
(
[text] => Å ios baterijos ...
2
votes
4answers
83 views
Split at capital letters PHP?
I found this question but it doesn't answer my question, Split word by capital letter
I have a string which is camel case. I want to break up that string at each capital letter like below
$str = ...
0
votes
1answer
50 views
PHP Regular Expression to split a csv string with optional enveloping quotiation marks
Given is a csv-string that contains an unknown number of blocks of text, splitted by semicolons (;).
Sometimes, but not always, the text blocks are enveloped in quotation marks ("). If they are, then ...
2
votes
1answer
33 views
Mysqli_real_escape_string preventing preg_split from working?
Example Text: This will be stored in the $_POST['x'] variable
This is sentence one.
This is sentence two.
This is sentence three.
If I run this code below It will return an array with only one ...
0
votes
1answer
26 views
Cocoa preg_split equivalent
I'm using preg_split to split a string based on a regular expression in PHP, using the following code:
$array = preg_split("~(?<!\*),~", $string);
What is the equivalent in Cocoa?
Any help ...
0
votes
1answer
73 views
preg_split values between specific tag
Good day.
I'm having a problem with a pattern.
Let's assume I have a string like this:
Hello [person]Name[/person], I don't know regex like
[person]Another_name[/person] does.
I need to ...
-1
votes
2answers
100 views
preg_split for email pattern
$email_address_pattern="([-!#\$%&'*+./0-9=?A-Z^_`a-z{|}~])+@([-!#\$%&'*+/0-9=?A-Z^_`a-z{|}~]+\\.)+[a-zA-Z]{2,6}";
$address= "abc@gmail.com";
$length=strlen($address);
...
1
vote
3answers
50 views
php preg_split with regex, need a trick?
Here is my string:
$myString = "first second third,el forth, fiveeee, six";
What I want to capture is:
first
second
third
el forth
fiveeee
six
This is what I tried for regex to be used in ...
1
vote
2answers
114 views
Split String into Text and Number
I have some strings which can be in the following format
sometext moretext 01 text
text sometext moretext 002
text text 1 (somemoretext)
etc
I want to split these strings into following: text ...
0
votes
2answers
71 views
empty return preg_split [how]?
i have string like this
$string = '$foo$wow$123$$$ok$';
i want to return empty string and save string in array like this
0 = foo
1 = wow
2 = 123
3 =
4 =
5 = ok
i use PREG_SPLIT_NO_EMPTY, i know ...
0
votes
1answer
108 views
Trying to dynamically write a table with PHP based on SQL Query
I started learning learning PHP a couple of days ago and have started to make an SQL Database management webpage using AJAX. I am having a problem with errors if I restrict the search to less than all ...
-1
votes
2answers
85 views
Match words starting with capitals in php?
I have a string
$str="NassarWellerGomez-GarciaSanchez-RenedoLoeches-SanchezGomez-GarciaMunoz-FerrerasSanchez-RenedoChiaoHakkarainenWernerValkamaHarounPlett";
I want to match words starting with ...
-2
votes
2answers
98 views
Splitting string array based upon digits in php? [closed]
I have a string
$str = "101WE3P-1An Electrically-Small104TU5A-3,Signal-Interference Duplexers Gomez-GarciaRobertoTU5A-3-01"
I want to split this string by the numbers, eg:"101WE3P-1An.... "should ...
0
votes
3answers
131 views
php preg split a string
I have a numeric string and I'd need to split it in groups of 2 starting from right, but not more than three groups.
To understand, the 3 groups are 'copper', 'silver' and 'gold' and the starting ...
0
votes
2answers
78 views
How to stop splitting within a pair of second delimiter in preg_split (PHP)?
I need to generate an array with preg_split, as implode('', $array) can re-generate the original string. `preg_split of
$str = 'this is a test "some quotations is her" and more';
$array = ...
1
vote
5answers
97 views
I have a PHP regEx, how do add a condition for the number of characters?
I have a regular expression that Im using in php:
$word_array = preg_split(
'/(\/|\.|-|_|=|\?|\&|html|shtml|www|php|cgi|htm|aspx|asp|index|com|net|org|%|\+)/',
urldecode($path), NULL, ...
5
votes
3answers
110 views
preg_split with two delimiters in PHP
How to merge two delimiters in preg_split? For example:
$str = "this is a test , and more";
$array = preg_split('/( |,)/', $str, -1, PREG_SPLIT_DELIM_CAPTURE);
print_r($array);
will produce an ...
-2
votes
1answer
61 views
preg_split() 2 letters and decimal
I have a string and this string should be an array.
But the first 2 letters are variable and I need the 5 next digits (whether empty or not). The last 5 digits are numeric with a decimal point or ...
0
votes
2answers
129 views
Intelligent split of string into an array
This code will split the string into an array that contains test and string:
$str = 'test string';
$arr = preg_split('/\s+/', $str);
But I also want to detect quotes and ignore the text between ...
0
votes
2answers
297 views
Explode string by semicolon using php's preg_split
I have this string (it's an apple .strings file):
/* this is a comment line; it may contain semicolons */
"you have here some text; also may contain semicolons" = "some other text;";
/* this is a ...
0
votes
2answers
57 views
preg_split does not work with price extraction
I have these types of possible content in the strings I'm breaking up:
$string = "$100 USD per year"
$string = "$100USD per year"
$string = "100 USD per year"
$string = "100EUR per year"
$string = ...
5
votes
1answer
166 views
preg_split mixed HTML and PHP tags except in quotes and comments
I have a php page mixed with HTML. Some example code:
<?php echo "<p>some text</p>"; ?>/* <? some php in comments ?> */
<p>some HTML text</p> <!-- ...
3
votes
1answer
287 views
PHP Regex to match the last occurrence of a string
My string is $text1 = 'A373R12345'
I want to find last none digital number occurrence of this string.
So I use this regular expression ^(.*)[^0-9]([^-]*)
Then I got this result:
1.A373
2.12345
But ...
-1
votes
1answer
105 views
RegExp to get lines with linebreaks
I'm trying to get some comment lines out of our database, they are stored as a string, separated by '\n'. Unfortunately in some of the comments contain texts - also with '\n', and I don't get them ...
0
votes
3answers
209 views
preg_split url with a regular expression
I have an string e.g.:
src="http://www.domain.com/sub_folder/xyz_17215_andso_on_01-file_08.html"
and want to split this at every character that is not a letter or number.
With
/[a-z0-9]/
I get ...
0
votes
3answers
94 views
Replace only the second html tag [closed]
I want to replace the second h2 tag to h3 and I hope someone can help me with a replacement regex, or maybe a preg_split - I am not exactly sure.
For example, this:
<h2>My text one</h2>
...
0
votes
0answers
157 views
split addresses in PHP
I have about thousand of records of addresses written as one string:
Some Street 42/156, 436 15, Prague 4
I'd like to split them so every street, ZIP code and town would be separate.
To make ...

