Regex inverse matching on specific string?

后端 未结 2 391
北荒
北荒 2021-01-19 23:16

I would like to match the following

  • com.my.company.moduleA.MyClassName
  • com.my.company.moduleB.MyClassName
  • c
2条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-19 23:54

    You can use the following regex:

    ^com\\.my\\.company\\.(?!core).+?\\.MyClassName$
    

提交回复
热议问题