Reputation: 3442
I have regex pattern (^\w+\W\w+)
which parse string such like:
in-package :presenter-domain
test-re :type string :display ""
name-de :type string :display ""
How to exclude variants when word starting with letter i
.
I tried something like [^i]
but it does not work.
Upvotes: 0
Views: 114