Search Results

0
votes

regular expression to extract text from HTML

If you're using PHP, try Simple HTML DOM, available at SourceForge. Otherwise, Google html2text, and you'll find a variety of implementations for different languages that basically use a se …
0
votes

Search then Extract

In PHP, you can run a SQL select statement like: "SELECT * WHERE name LIKE 'JULIUS%';" There are native aspects of PHP where you can get all of your results in an assoc …
0
votes

Regex Partial String CSV Matching

Looks like you're using Sed. While your pattern seems to be a little inconsistent, I'm assuming you'd like every item separated by commas to have quotations around it. Otherwise, you're loo …
0
votes

PHP/RegEx - Logic for prepending table names

I don't know if a regular expression is a good idea here. I'd say it'd be worth the minimal amount of increased computational complexity to perform the validation yourself in PHP. Then, should yo …
1
vote

RE -> FSM generator?

It might not be exactly what you're looking for, but the Xerox Finite State Transducer supports regular expressions, builds the machine, and even can create a graphical representation using GraphVi …
1
vote

PHP Regex Question

It seems like you might be conflating a multi-step task, which may ultimately create more trouble in the long run. You'd basically like to do three things: Find all anchor tags on a …
0
votes

Regular Expression to match a word

I'd advise against a simple regular expression approach to this problem. There are too many words that are substrings of other unrelated words, and you'll probably drive yourself crazy trying to ov …
0
votes

regex: match string only if not part of a tag

What you're looking for is a DOM parser. That will strip out all the HTML and provide you the plain text of the page you're examining, which you can then match on. Not sure what your use case is, …