TehKittyCat Posted September 6, 2009 Share Posted September 6, 2009 Hi, I am trying to write a regex to add a % to the end of a line and then remove it later on. So basically if a line starts with % add a % to the end of the line. %ifdef DEFINE display: none; %else color: blue; %endif } %ifdef DEFINE% display: none; %else% color: blue; %endif% } Quote Link to comment Share on other sites More sharing options...
Daniel0 Posted September 6, 2009 Share Posted September 6, 2009 Try this: $text = preg_replace('#^%([^%]+)$#', '%$1%', $text); Edit: Updated regex. Quote Link to comment Share on other sites More sharing options...
TehKittyCat Posted September 6, 2009 Author Share Posted September 6, 2009 Ok, I found something that works: $text = preg_replace('/^%.*/m', '$0%', $text); Thanks for the help. Quote Link to comment Share on other sites More sharing options...
RussellReal Posted September 6, 2009 Share Posted September 6, 2009 You should probably use Daniel's RegEx because his makes sure there already isn't a % at the other side.. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.