Tagged Questions
2
votes
2answers
145 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 { ...
1
vote
3answers
103 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
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
2answers
67 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
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
2answers
68 views
PHP preg_split anyway to keep the dividing string ??
If i have the following string
$string = "
0001
a
b
c
d
e
0002
f
g
h
i
j
";
I am splitting it with $r = preg_split("/\d{4}\n/", $string); and that works fine but i also want to include the ...
0
votes
3answers
106 views
PHP Preg_split_once
Preg_match gives one match.
Preg_match_all returns all matches.
Preg_split returns all splits.
How can I split only the first match?
Example:
preg_split("~\n~",$string);
This is what I want:
...