regex - Regular expression for matching \n and space -
i trying use regular expression within perl script parse file match:
space , "\n" (newline) in alternating manner - i.e first match space "\n", space (which on new line in file... , on)
thanks, -ad
try this:
(^ \n)+
Comments
Post a Comment