Jump to content

Recommended Posts

in my code i use preg_replace to replace this in an html file

 

<asf: if 1 = 1>

 

to this in the php file

 

<?php if(1 = 1) {

 

and the code i use is:

 

preg_replace('|\<asf: if (.*?) (.*?) (.*?)\>|si','<?php if(\\1 \\2 \\3) {',$content);

 

however if the html file contains

 

<asf:if 1 = 1>

 

notice the missing space after the colon. The preg statement doesnt work. Is there a way to do it regardless of if there is a space there or not?

 

 

Link to comment
https://forums.phpfreaks.com/topic/240530-check-for-whitespace/
Share on other sites

I suggest that you try to use a more XMLesque type of markup. Something like


There are a few advantages, three of which are (1) easier to parse - you don't need regular expressions, (2) easier to keep it valid - no forgotten tags and you can use DTDs and schemas, and (3) with those schemas you can use any smart editor and its autocomplete/intellisense.

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.