Help with regex on APK version #1887
-
Got tutonata app installed. Tutanota repo started to host apps for calendar builds, but I don't care about it, since I need only a sheer tutanota app for Android. I've been budging around for a long time, but still end up with calendar app. I had tried to edit APK version to have a lookaround regex like ^((?!.webview.).)$ , but it didn't help me a bit. I either edited release's title and release notes, however got the same result. The simple regex tutanota..apk still fetches calendar, and I don't know why though , feeling jaded to entertain something. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
I see what's going on here. There's a few options. Option (1) To make it easy to understand, here's a basic ReGex to eliminate a release title within GitHub: All we need to do is change Filter Release Titles by Regular Expression: *Capitalization matters. A lower case "c" won't work, it must match the release title within GitHub. Option (2) Filter APKs by Regular Expression: |
Beta Was this translation helpful? Give feedback.
-
The ReGex ^((?!.Calendar.).)$ works eliminating the Calendar title , but it fetches a next release title, which is for iOS, so after adjusting it to ^((?!.(Calendar|iOS).).)$ got it at last to what I strived for. |
Beta Was this translation helpful? Give feedback.
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
toCalendar
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…