All Tags »
slow expression
Sorry, but there are no more tags available to filter with.
-
Hi all,
I'm facing very strange behavior.
i'm trying to create regualr expression that will match the string: [any characters with spaces].[any characters with spaces]
& i don't want to allow any chars before or after the string.
i create this expression:
^\[(\s*\w+\s*)+\]\.\[(\s*\w+\s*)+\]$
& using the .net as ...