我该怎么做:
<img class="classone twoclass alignLEFT" src="xxxx" />
在类数组中搜索单词“align”,获取单词“align”的其余部分(在本例中为“left”)并将其分配给实际的 align 属性?
<img class="classone twoclass alignLEFT" align="LEFT" src="xxxx" />
我知道我需要
$needle = "align";
$haystack = "<img class="classone twoclass alignLEFT" src="xxxx" />"
我正在寻找的是
$pincushion = {{the rest of the word from $needle}}
所以基本上我正在做一个preg_match
for $needle
。如果找到,我如何得到该词的其余部分(即,$pincushion
)?
我试过preg_split
了,但它不允许我使用“对齐”作为分隔符。(说得通)
这不能是 jquery / javascript - 它必须发生在呈现的 html 代码中。
有什么想法吗?我现在花了 10 个小时寻找没有真正运气的答案。我确实遇到了 DomDocument,但也找不到我需要的东西。