Paul K. Dickson wrote:
> For ease of administration/review I want to have a regex that will allow 1
> value per line.  A random example:
> 
> Sales\s(\btest\b
> Anotherword
> Stufftoblock
> Ihatespam)
> 
> Instead of: 
> Sales\s(\btest\b|anotherword|stufftoblock|ihatespam)
> 
> 
> Does anyone know how to do this off the top of their head?
> 
> ------------------------------------------------------------------------------

Have you tried escaping the <cr> at the end of each line? As in:
Sales\s(\btest\b\
Anotherword\
Stufftoblock\
Ihatespam)

-- 
-Eric 'shubes'


------------------------------------------------------------------------------

_______________________________________________
Assp-user mailing list
Assp-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/assp-user

Reply via email to