I have this text 'I'm Cristian'.
I'm using a regex to wrap every character in a different span element. I want to exclude the word Cristian from the operation I tried with Negative lookahead but i can't put it to work .
the basic regex is this
/([^\x00-\x40]|\w|\S)/g
i tried with
/(?!Cristian)([^\x00-\x40]|\w|\S)/g
but it doesn't work thanks for the help