Exclude a or b or c i use
[^abc]*?
work ok,
how to exclude strings regex
For example, to exclude the string abc
I used a Google search and someone said to use the following format
(?!^ABC$)
(?!^ABC$)(^.*$)
^((?!ABC).)*$
but after I use it, it still doesn't work.
(?<=<span\ class="^((?!abc).)*$">)[\w\W]*?(?=</td>)
[^abc]*?
work ok,
how to exclude strings regex
For example, to exclude the string abc
I used a Google search and someone said to use the following format
(?!^ABC$)
(?!^ABC$)(^.*$)
^((?!ABC).)*$
but after I use it, it still doesn't work.
(?<=<span\ class="^((?!abc).)*$">)[\w\W]*?(?=</td>)