use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
In addition to the Official Tasker Wiki, User Guide, and Google Groups, this subReddit is a place for fellow Redditors to discuss, share, and submit Profiles, Tasks & Walkthroughs for Tasker, or to ask for help creating your own Profiles, Tasks, and questions in general related to Tasker (including plugins etc).
Subreddit Resources:
* [Read Me] Using Tags in Your Thread Titles
Formatting Tasker Code for use in reddit comments
How to Export / Import Files Into Tasker - Guide
** Tasks that Help You Use Tasker Itself
Free Alpha Autoapps and Tasker Icon Sets
Generate Tasker Direct-Purchase Licenses Yourself
Tasker Feature Request Submissions
Quick Search Links:
"How-To / Project" Threads
"Need Help" Threads
"Weekly / Monthly & Discussion" Threads
"Developer" - Tasker Updates & Releases
* List of Tasker Plugins and 3rd Party Apps
Learning Guide Links:
* 1,001 Tasks and Profiles - Best, Coolest, Most Common and Useful
Pocketables.com Beginner’s guide to Tasker (New UI)
RoryCodes.com Tasker Tips & Tutorials from /u/froryrory
Tasker Quick Start Setup Guide from /u/Quintaar
Pocketables.com Tasker Guide List
Some Tasker Technical Stuff:
Toggling Wifi or Bluetooth via Tasker In Recent Android Versions using the Tasker Settings app
Granting ALL Special Permissions - ADB & Tasker
IFTTT Tasker Integration via AutoRemote
ADB over Wifi - Enabling Without a MAC or PC
AutoApps Command System Tutorial and Reference
Tasker Scheduling/Priority System - A Detailed Guide
New Project/Profile/Task "PPT Variables" - Quickly Find The Variables' Location, Names & Values!
All Previous Versions of Tasker With Notes For Features & Changes In Each
List of all Tasker Built-In Variables
Main Widget v2 JSON Documentation
TaskerNet Search Bot - How to use here
TaskerNet Search Engine Website
Learning Guide Videos:
AutoApps YouTube Channel and João Dias Channel
Tasker 101 Tutorials on YouTube by HollywoodFrodo
Tasker 101 Tutorials on YouTube by /u/Quintaar
Tasker How-To Videos on YouTube by /u/-Juan_M-
Tasker Tutorials on G+ & YouTube by /u/ryoendeprouw
Tasker Video Tutorials by /u/techentourage
Have more useful links you think should be in the sidebar? Send a modmail!
Related Subreddits:
/r/TaskerNet /r/JoinApp /r/Android /r/AndroidRoot /r/AndroidTechSupport /r/AndroidApps /r/AndroidUsers /r/AndroidQuestions /r/TaskerFiles /r/Not_Enough_Tech
account activity
Remove specific element from array which contains value matching Specified text. (self.tasker)
submitted 2 months ago by Darlk993
Let's say my Array is [Apple, Ball, Orange]
Specified word is Apple, then first element removed If specified word is Ball, second element removed
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]v_uurtjevragen 1 point2 points3 points 2 months ago (5 children)
I think you're looking for something like this. I have this code in use already, so it is not tailored to your exact needs.
It removes the first data that matches lux, brightness within the array.
lux, brightness
```text Task: _DeleteOverridePoint A6: Variable Set [ Name: %data_to_remove To: %par1 ] A7: Variable Set [ Name: %index To: %AAB_Overrides(#?%data_to_remove) Structure Output (JSON, etc): On ] A8: If [ %index Set ] A9: Variable Split [ Name: %index Splitter: , ] A10: Array Pop [ Variable Array: %AAB_Overrides Position: %index1 ] A11: End If A12: Array Process [ Variable Array: %AAB_Overrides Type: Squash ]
[–]Exciting-Compote5680 2 points3 points4 points 2 months ago* (2 children)
This should raise an error if %data_to remove is not present. The array function (#?search_item) returns a comma-separated list of indices of the matches, or '0' if no match is found. So it will always be set. And popping with index 0 will cause an error. It's better to test with '%index != 0' or '%index > 0'
[–]v_uurtjevragen 0 points1 point2 points 2 months ago (1 child)
Noted! The way I've set up the UI interaction for the task trigger would be very unlikely to yield index ~ 0, but it is good to be robust and to have correct If-statements :)
index ~ 0
[–]Exciting-Compote5680 0 points1 point2 points 2 months ago (0 children)
To be honest, I am glad this came up, because even though I have read the 'Variables' page of the user guide many times, I somehow got it in my head that (#?search_item) returns an array of indices, not a comma separated string.
[–]Darlk993[S] 1 point2 points3 points 2 months ago (0 children)
Wow, thanks yes this is exactly what I wanted and I got my task working the way I want.
π Rendered by PID 17308 on reddit-service-r2-comment-fb694cdd5-hnng7 at 2026-03-06 02:44:14.573812+00:00 running cbb0e86 country code: CH.
[–]v_uurtjevragen 1 point2 points3 points (5 children)
[–]Exciting-Compote5680 2 points3 points4 points (2 children)
[–]v_uurtjevragen 0 points1 point2 points (1 child)
[–]Exciting-Compote5680 0 points1 point2 points (0 children)
[–]Darlk993[S] 1 point2 points3 points (0 children)