在 php 中这有效:
$string = 'Hallo <b> fett </b> und/so/was ';
echo preg_replace('/(?<!<)\//', ' / ', $string);
输出:Hallo fett und / so / was
试图在 jquery 中得到它:
my_text.instructions = my_text.instructions.replace(/(?<!<)\//g, ' / ');
给我
SyntaxError: 无效的量词
感谢您的帮助。直到。