Jump to content

preg replace and OR


digitalecartoons

Recommended Posts

So how does that work exactly with preg_replace? Is there some kind of order? Lets take part of this text as string:

 

"occurrence of \r\n into TWO line break"

 

so when using: $message = preg_replace('~\r\n|\r|\n~', "\r\n", $message); to turn things into proper \r\n newline codes

 

it first searches for \r\n, making it \r\n so it would remain:

"occurrence of \r\n into TWO line break"

 

then it would replace \r for \r\n, making it

"occurrence of \r\n\n into TWO line break"

 

finally it would replace \n for \r\n making it

"occurrence of \r\r\n\r\n into TWO line break"

 

Thats the way I see it , but it probably doesn't work that way with preg_replace and those 3 options seperated by an OR character?

Link to comment
https://forums.phpfreaks.com/topic/76302-preg-replace-and-or/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

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