How to find next business day with powershell ?
|
|
|
|
|
|
|
Well, my phone allows me to set which days are business days, but Windows/.NET won't, so I assume Monday through Friday. Note: As the question includes "golf" I am golfing this one, that is trying to use as few bytes for the script as possible. The code is not necessarily readable as a result. The easiest and most straightforward way to do is would be to start with today, add a day and look whether it is in the wanted range:
We can shorten that a little, though:
But we can also try it differently, using the pipeline. The next business day is at least one and at most three days away, so we can generate a list of possible dates and filter them accordingly and at last, select the first one:
or shorter:
By letting the range go to 4 we can guarantee that it always returns at least two workdays and save the @ operator to force an array:
|
||||||
|
|
|
Here is another pipline way:
Not sure why I have to use (1..4) instead of (1..3) however. |
||
|
|
|
This is pretty short too (but uses aliases):
In one single statement:
A few notes about this approach:
|
||||||||
|
