Tagged Questions

1
vote
4answers
60 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= …
0
votes
3answers
30 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 i …
1
vote
2answers
35 views

problems with text parsing using preg_split

Hello! 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
5answers
65 views

Converting big String back to Array - PHP

Hello everybody. [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 CB335EE#Tint …
0
votes
5answers
91 views

PHP preg_split if not inside curly brackets

Hi all! 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} …