Is there a way to use regular expression search and replace function in notepad++ to change ip addresses to a range for below?
With below
RewriteCond %{REMOTE_HOST} ^14.96.0.0/14
RewriteCond %{REMOTE_HOST} ^14.102.0.0/17
RewriteCond %{REMOTE_HOST} ^14.102.128.0/22
RewriteCond %{REMOTE_HOST} ^14.102.160.0/19
To be changed to something like
RewriteCond %{REMOTE_HOST} ^14.96.0.([0-1][0-4])$
RewriteCond %{REMOTE_HOST} ^14.102.0.([0-1][0-7])$
RewriteCond %{REMOTE_HOST} ^14.102.128.([0-2][0-2])$
RewriteCond %{REMOTE_HOST} ^14.102.160.([0-1][0-9])$