Regex to match not start of line

Viewed 24822

I have the following XML tag

<list message="2 < 3">

I want to replace the < in the text with &lt;

Need a regex to match < if it doesn't appear at the start of line.

6 Answers
Related