Is it possible (maybe using RegExp or something else) to do the following with less code?
var bTest = szNextEntity[0] == '<' && szNextEntity[1] != '/'
So bTest is true if the zeroth character of szNextEntity == '<' and the first character != '/'
Am interested in how concise this can be made.
Thanks.