Search for a specific word in regex
#1
Hey,

I'm currently trying to implement some level of div-based image / text inlining and floating on my board for greater post formatting control, however I want to restrict the [div] tag's formatting options to only valid values of the CSS float, display and width properties using regex to search for these specific words in the tag. However, I can't seem to get it to work properly.

Here's the current state of my probably terrible regex:


\[div float="([right|left|none]+)" display="\([inline|inline-block|inherit|none]+)" width="(.*?)"\](.*?)\[/div\]

<div style="float:$1; display:$2; width:$3%;">$4</div>

Some pointers would be appreciated.

Thanks!
Reply
#2
Try:
\[div float="(right|left|none)" display="(inline|inline-block|inherit|none)" width="([0-9]+)"\](.*?)\[\/div\]
devilshakerz.com/pgp (DF3A 34D9 A627 42E5 BC6A 6750 1F2F B8AA 28FF E1BC) ▪ keybase.io/devilshakerz
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)