Jump to content

qwikaddotcom

Members
  • Posts

    10
  • Joined

  • Last visited

qwikaddotcom's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. I guess I've taken the easiest way out for now. I've tried different lines and ended up with this one. It does what I want... for now: $text = preg_replace( '/(s*<\/table\s*\/?>\s*)+/', "</table>", $text); Thanks everyone for your input!
  2. Also, without the table in the script, it will strip all unwanted </table> tags, not just a definitive number of them.
  3. The difference is (at least I thought there was a difference), before, as I thought it was mentioned, it needed to be parsed where's now it probably can be accomplished with a one liner. For example (although it's a different solution): $text = preg_replace('/<([^<>]+)>/e', '"<" .str_replace(""", \'"\', "$1").">"', $text); or do I still have to use the solution offered by jazzman1 where I have to use the table itself within the script?
  4. I know I am probably getting all of you annoyed with my posts about the same thing, but I need something different. Actually, what I need (as I have figured it out now) is something way simpler than what I thought I needed: If there is already a closing </table> tag at the end of a table, any other closing </table> tags after that last closing tag should be stripped. In other words, it doesn't matter what happens inside the table, what matters is after the table is closed and there's no new opening <table> tag, any extra closing </table> tags must be stripped. I think this is doable. AND... that will eliminate 95% of the wrong tables (from what I've seen happening in the posts). The difference between what I need now and what I needed before is that there will be no need for parsing. The only "parsing" that will be involved will go like this "ok the table has a closing tag and there are no openings tags, but there are extra closing tags...... strip them!" Can you suggest how this can be done with preg_match or something similar? I'd really appreciate it. Preg_match, str_replace or preg_replace work best for me, because I can apply them directly to the markdown. Thank you a lot!
  5. But this will work just for one particular example. I need something more universal. I need a preg_match or something that will pretty much strip all extra </table> tags in all kinds of html table structures...
  6. I guess you posted it just a second before I did. LOL.
  7. It's a great recommendation, but can you show me how it can be done with either preg_match, regex or SimpleDOM? All it has to do is clean all extra </table> tags (closing table tags). Everything else can stay. Thank you.
  8. I am not familiar with SimpleDOM. I found something about it on here: http://simplehtmldom.sourceforge.net/ it will take me a lot of time to try to figure something like removing extra </table> tags using it. Can you suggest a solution? The idea is if there's an unwanted closing table tag (whether 1 or many) they should be stripped. Any help will be appreciated.
  9. How would you accomplish something like that with let's say preg_match or regex?
  10. Hi! Let's say somebody posts an ad that has html tables in them, and the tables have extra closing tags </table> in them. Example: <table border="0"> <tr> </td> Some text.... </td> <td> Some text.... </td> </tr> </table> </table> </table> Is there a way to remove extra closing tags (just extra </table> tags) from any html table? Thank you for any input.
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.