Questions tagged [ios-shortcut]
12 questions
4
votes
1 answer
POST a JSON list [] using 'Choose from List' (Select Multiple on) in Shortcuts
Here is an example of a JSON array Shortcut to test JSON lists (with a working API token in a test environment).
There are a handful of 'Quick Look' and Pretty Print Dictionary actions through the Shortcut for ease of readability.
The ideal…

eggy
- 2,836
- 3
- 23
- 37
3
votes
2 answers
RegEx: Omit first single zero in flight numbers
I need a RegEx to format flight numbers to keep the letter code and the following digits, but omit the leading zero if it stands alone and the total number of digits is at least four. This is used in iOS Shortcuts which is a simplified workflow with…

ScoobyDooku
- 133
- 10
1
vote
1 answer
Is it possible to write custom .shortcut file for iOS Shortcuts application?
Why?
I have REST API service where user can place marks on any day of the year. There is Endpoint (URL) that allows user to place mark on current day, for example POST request to /api/mark/1
So, I want to create custom .shortcut file for users that…

mkc
- 13
- 3
1
vote
4 answers
How to replace a substring only once?
I have the following string:
Log First Meal Time,Twitter,Midday Routines Done,Midday Routines
I want to write a regular expression such that I will get exactly the following:
Log First Meal Time,Twitter,Midday Routines Done,⚡ Midday Routines
How…

livemyaerodream
- 890
- 6
- 19
1
vote
0 answers
iOS Shortcut icon not showing up when shared to watch
I'm finishing up an app extension that provides shortcut support. Shortcuts are working great, and the app's icon shows up in the shortcut on the iPhone.
The problem is that the icon doesn't bubble up to the watch. I get the generic developer icon…

Michael Gaines
- 383
- 3
- 13
1
vote
3 answers
Trying to use Regex match an iOS phone number using iOS Shortcuts
I'm creating an iOS shortcut that starts with checking whether the clipboard currently holds a copied phone number.
So far, my regex is the following:
^[\d\()-‑+ ]+$
Although while typing a regular phone number using the phone keyboard, e.g., +972…

Erelephant
- 111
- 9
0
votes
0 answers
Is it possible to import shortcuts with a mobileconfig file?
I wanted to import multiple shortcuts with one file. My idea was to make something like a shortcuts library/module where every shortcut is a function that can be runned by an other shortcut. Could a mobileconfig file be a solution?

Antonabi
- 1
0
votes
0 answers
How to format the start and end time in iOS URL schemes in Shortcuts
I created a shortcut 'Add New Event' on my iPad. I need to automate the start and end time, so I use the iOS shortcuts URL schemes. I asign date variable to the start time and end time. Here's the URL I wrote for a start time 2024-01-01-06:00:00 and…

Yuqi Wang
- 1
- 1
0
votes
1 answer
How to upload a file using an iOS shortcut and receive it using a Deno web server?
I have an http server written in deno like this
import { serve } from "https://deno.land/std@0.178.0/http/server.ts";
serve((_: Request) => {
// do something with request
// ...
return new Response("hello", {
status: 200,
headers:…

Michael C. Welnick
- 331
- 2
- 9
0
votes
1 answer
iOS Shortcut to get values into calculator
To long a long story short I am trying to create a iOS shortcut and display it in the calculator.
I got the dictate working right and then I have my number being display in a alert but I dont know how I can get the number into the calculator!

JMS
- 183
- 2
- 9
0
votes
1 answer
How to deep link to automation in shortcut app?
How can an app deep link directly into the automations tab of the shortcuts app?
Below is a user guide with some info about deep linking into the shortcuts…

Ryan
- 630
- 8
- 20
0
votes
1 answer
Is there a way to filter iOS Shortcuts photos by aspect ratio?
Is there a way to filter iOS Shortcuts photos by aspect ratio?
I have a Shortcut that finds a random photo after the filter Favorite in the last 12 months is applied. I would like to only have vertically oriented photos but aspect ratio isn't an…

Michael Glenn
- 1,872
- 1
- 19
- 23