Skip to content

Help with regex on APK version #1887

Answered by DarkCrypt
Taras-Ivashchuk asked this question in Q&A
Discussion options

You must be logged in to vote

I see what's going on here. There's a few options.

Option (1)
Your webview ReGex is wrong and it won't work for this particular repo anyway. If your ReGex was correct it would filter out release titles for webview not calendar.

To make it easy to understand, here's a basic ReGex to eliminate a release title within GitHub: ^((?!.*whateverword.*).)*$

All we need to do is change whateverword to Calendar so it's like this...

Filter Release Titles by Regular Expression: ^((?!.*Calendar.*).)*$

*Capitalization matters. A lower case "c" won't work, it must match the release title within GitHub.

Option (2)
It's possible to just use a simple filter as you would for other repos like this...

Filter A…

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
0 replies
Answer selected by Taras-Ivashchuk
Comment options

You must be logged in to vote
2 replies
@DarkCrypt
Comment options

@Taras-Ivashchuk
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants