In my text box, i should find (<LessThan Symobl> <character>) and replace with (<LessThan Symbol <space> <character>)
Example:
Input:
abc<xyz abc <abc
output:
abc< xyz abc < abc
From a string, i should find ([LessThanSymbol] [character]) and replace with ([LessThanSymbol] [space] [Character] ) in javascript
You can use a regular expression to find all
<character that are followed by a non-space character, and insert a space: