I have question how to replace whitespace with _ using notepad++ regex between [] characters
Example :
sl.[Posting date] AS TIME,
Use
Regex Replace
(\[[^ ]*) +(.*\])
with
$1_$2
if you want to replace multiple space character with a single _ OR
(\[[^ ]*) (.*\])
if you want to replace each space character with a single _