0
votes
Template ifs using regex
I think you meant to do this:
'/<!--if\(([^)]*)\)-->([^<]*)<!--endif-->/'
Your regex has only one character class in it:
[^\]*)\)--& …
1
vote
Regular expression for parsing CSV in PHP
I agree with the others who said you should use the fgetcsv function instead of regexes. A regex may work okay on well-formed CSV data, but if the CSV is malformed or corrupt, the regex will silen …
5
votes
Question about Regular Expression Books
Definitely buy Mastering Regular Expressions. Don't be put off by the fact that it covers other languages besides P …
1
vote
How can I convert URLs to Markdown syntax, but NOT interfere with URLs already in Markdown syntax?
I think (?<!\() is what you meant. If the match position is at the beginning of http://www.google.com, it's not the next character you need to check, but the …
0
votes
Including new lines in PHP preg_replace function
I think you've got more problems than just the dot not matching newlines, but let me start with a formatting recommendation. You can use just about any punctuation character as the regex delimiter …
0
votes
2
votes
Replacing HTML attributes using a regex in PHP
PHP is unique among the major languages in that, although regexes are specified in the form of string literals like in Python, Java and C#, you also have to use regex delimiters like in Perl, JavaS …
2
votes
preg_replace() help in PHP
Asssuming this is related to the question you posted and deleted a little while ago (that was you, wasn't it?), it's your fundamental approach that's wrong. You said you were generating these HTML …
2
votes
XMLReader encoding error
I would listen to what XMLReader is telling you. Remember that many encodings are supersets of ASCII, so (for example) UTF-8 and ISO-8859-1 are identical to ASCII for the first 128 code points. I …
1
vote
RegEx in PHP: Matching a pattern outside of non-escaped quotes
The way to deal with escaped quotes and backslashes is to consume them in matched pairs.
(?=(?:(?:(?:[^\'\\]++|\\.)*+\'){2})*+(?:[^\'\\]++|\\.)*+$)
In other words, …
0
votes
Extract keywords/tags from string using Preg_match_all
You've almost got it; you just need to use lookarounds to match the quotes:
'/(?<=\')[^\'\s][^\']*+(?=\')|(?<=")[^"\s][^"]*+(?=")|[^\'",\s]+/'
…
1
vote
How to correctly parse a mixed latin/ideographic full text query with regex?
The problem appears to be with the regex [^\12544-\65519]. That looks like it's supposed to be a range defined by two, five-digit octal escapes, but it doesn't work that way. The act …
0
votes
PHP RegEx Grouping Multiple Matches
Your second capturing group matches the attributes one at a time, each time overwriting the previous one. If you were using .NET regexes, you could use the Captures array to retrieve the individua …
1
vote
How to correctly parse a mixed latin/ideographic full text query with regex?
I'm not set up to work with either PHP or Chinese, so I can't give you a definitive answer, but this should at least help you refine the question. As I see it, it's basically a four-step process: …
1
vote
regex that won’t find pattern in alt text for php eregi_replace
If I wanted to replace "John Doe" if it's not inside a tag, I would do this:
$str = preg_replace('/John Doe(?![^<>]*+>)/i', $new_name, $str);
(?