2

Intellij IDEA 12

我想为 Bitbucket 问题添加一个新的问题导航链接(设置 -> 版本控制 -> 问题导航)(具有模式:https ://bitbucket.org/user/repo-name/issue/123 )。

我希望问题 ID 为 #n(例如 #3、#123 等)。

如何输入问题 ID 作为正则表达式?#\d+ ?

是否可以使用正则表达式创建子字符串,因为它不应该是 Bitbuckt 问题 URL 中的哈希?

4

1 回答 1

6

尝试以下操作:

#(\d+)   --   https://bitbucket.org/user/repo-name/issue/$1
于 2013-04-03T21:36:10.693 回答