Removal | |
---|---|
Delete shortest match of needle from front of haystack |
${haystack#needle} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$token="<Your_api_token>" | |
$accountName="<Your_account>" | |
$projectSlug="<Your_project_slug>" | |
$toFind = @("foo", "bar") | |
$headers = @{ | |
"Authorization" = "Bearer $token" | |
"Content-type" = "application/json" | |
} |