Regexp for adding a space
Posted: Tue Feb 08, 2005 7:26 pm
Hi all,
I need to add a space in front of a colon : in hundreds of HTMLs, but I don't want to corrupt the links and tags that include a colon, therefore I created a list of keywords in front which the space can't be inserted.
size
family
language
align
http
ftp ....
I was thinking of an RegExp :
Search for: NOT(size|family|language|align|http|ftp):
Replace: \1 :
But I don't know how to insert "NOT" in the list of keywords
thank you
I need to add a space in front of a colon : in hundreds of HTMLs, but I don't want to corrupt the links and tags that include a colon, therefore I created a list of keywords in front which the space can't be inserted.
size
family
language
align
http
ftp ....
I was thinking of an RegExp :
Search for: NOT(size|family|language|align|http|ftp):
Replace: \1 :
But I don't know how to insert "NOT" in the list of keywords
thank you