Given a string, convert
& to &
" to "
' to '
> to >
< to < Example 1:
Input: "This is &"
Output: "This is &"Example 2:
Input: "This is &>"
Output: "This is &>"Example 3:
Input: "This is &&"
Output: "This is &&"