Re: [Monad] Missing help about_switch



Policy variables are discussed under automatic_variables. Can you try this:

help about_automatic_variables

and let me know whether you want to see any changes.

Thanks
Krishna[MSFT]

This posting is provided "AS IS" with no warranties, and confers no 
 rights.


"/\\/\\o\\/\\/ [MVP]" wrote:

> thanks,
> 
> Another one that seems missing :
> 
> about_policy_variable
> (mentioned here : about_Shell_variable )
> gr /\/\o\/\/
> 
> PS If I remember correctly the .TXT files are extreacted from the XAML 
> help, but the info, as mentioned is not in there also.
> 
> Jeff Jones [MSFT] wrote:
> > Thanks.  I will file a bug.  It appears the file was written but isn't 
> > getting picked up by setup for some reason.  The file is attached.
> > 
> > 
> > 
> > about_Switch
> > 
> > SHORT DESCRIPTION
> >     Using a switch to handle multiple if statements.
> > 
> > LONG DESCRIPTION
> > 
> >     You use an If statement to make a decision in a script or program. 
> >     Essentially it says; “If this condition exists, do this action. 
> >     Otherwise do that action.” You can perform that operation as many 
> >     times as you want but if you have a long list of conditions, an If 
> >     statement quickly gets unwieldy. With a long list of conditions you 
> >     can combine them in a switch statement. As in all branching 
> >     statements, braces ({}) are required to enclose script blocks.
> > 
> >     A switch statement is, in effect, a series of If statements. It matches 
> >     the expression with each of the conditions case by case. If a match 
> >     is found, the action associated with that condition is performed. The 
> >     switch statement, very basically, takes this form:
> > 
> >     MSH> $a = 3
> >     MSH> switch ($a) {
> >         1 {"It’s one"}
> >         2 {"It’s two"}
> >         3 {"It’s three"}
> >         4 {"It’s four"}
> >         }
> >     It’s three
> > 
> >     This simple example takes a value and compares it with each condition 
> >     in the list. The action just echoes a string from the match. But you 
> >     could face a problem if you check all of the conditions. 
> >     For example:
> > 
> >     MSH> $day = "day5"
> >     MSH> switch ($day){
> >         day1 {"They call it stormy Monday"; break}
> >         day2 {"Tuesday's just as bad"; break}
> >         day3 {"Wednesday's worse"; break}
> >         day4 {"Thursday's oh so sad"; break}
> >         day5 {"The eagle flies on Friday"; break}
> >         day6 {"Saturday I go out to play"; break}
> >         day7 {"Sunday I go out to play"; break}
> >         day5 {"Wait, too many days."; break}
> >         }
> >         
> >     The eagle flies on Friday
> > 
> >     There are 2 day5 conditions in the list. But the break at the end of 
> >     each condition tells the switch to stop looking further and do the 
> >     action it finds. If the break statements were not there, then both 
> >     day5 actions would take place. 
> > 
> >     If the value to switch against is an array, then each element in the 
> >     array will be evaluated in order, starting at element 0. At least 
> >     one element must be present that meets at least one condition or 
> >     an error will result. If there is more than one default clause, an 
> >     error will result.
> > 
> >     The complete switch syntax is as follows:
> > 
> >         switch [-regex|-wildcard|-exact][-casesensitive] ( pipeline )
> >     or
> >         switch [-regex|-wildcard|-exact][-casesensitive] -file filename
> >     followed by
> >         { 
> >             "string"|number|variable|{ expression } { statementlist }
> >             default { statementlist } 
> >         }
> > 
> >     By default, if no options are used, switch behaves as if a case 
> >     insensitive exact match is in effect.  If "pipeline" results in an 
> >     array, each element of the array shall be evaluated in ascending offset 
> >     order (starting at 0).   
> > 
> >     At least one conditional element must be present in the switch 
> >     codeblock and only one default clause may be present.  If more than 
> >     one default clause is present, a ParseException shall be thrown.
> > 
> >     Switch has the following options:
> > 
> >         -regex	        Indicates that the match clause, if a string, is 
> >                         treated as a regex string.  Use of this parameter 
> >                         disables -wildcard and -exact.  If not a string, 
> >                         this option is ignored.
> > 
> >         -wildcard	    Indicates that the match clause, if a string, is 
> >                         treated as a wildcard string.  Use of this 
> >                         parameter disables -regex and -exact.  If not a
> >                         string, this option is ignored.
> > 
> >         -exact	        Indicates that the match clause, if a string, must 
> >                         match exactly.  Use of this parameter disables 
> >                         -wildcard and -regex..  If not a string, 
> >                         this option is ignored.
> > 
> >         -casesensitive	Modify the match clause, if a string, to be case 
> >                         sensitive.  If not a string, this is ignored.
> > 
> >         -file	        Take input from a file (or representative) rather 
> >                         than statement. If multiple -file parameters are 
> >                         used, the last one is be used.  Each line of the 
> >                         file is read and passed through the switch block.
> > 
> >     Multiple uses of -regex, -wildcard or -exact are allowed, however only 
> >     the last parameter used governs the behavior.
> > 
> >     The keyword "break" indicates that no more processing shall occur and 
> >     the switch statement shall exit.  
> > 
> >     The keyword "continue" indicates that no processing shall continue 
> >     against the current token and the next token in the conditional will 
> >     be evaluated.  If no tokens are available, the switch statement will 
> >     exit.
> > 
> >     The “{ expression }” block may be a code block that will be evaluated 
> >     at the time of the comparison.  The object under scrutiny is bound to 
> >     the automatic variable "$_" and is available during the evaluation of 
> >     the expression.  A comparison is considered a match if the expression 
> >     evaluations to "true".  This expression is evaluated in a new scope.
> > 
> >     The “default” keyword within the switch statement indicates that if 
> >     no matches are found, the code block that follows the keyword shall 
> >     be evaluated.  Program flow shall not be allowed from stanza to 
> >     stanza (e.g., the closing “}” in the compound-list is an explicit 
> >     "break". )
> > 
> >     If multiple matches are found, each match shall result in the 
> >     expression being executed.  To avoid this, the break or continue 
> >     keywords may be used to halt further comparisons.
> > 
> > SEE ALSO
> >     For information about break, enter the following command
> >     at the MSH command prompt:
> > 
> > 
> >         help about_break
> > 
> > 
> >     For information about continue, enter the following 
> >     command at the MSH command prompt:
> > 
> > 
> >         help about_continue
> > 
> > 
> >     For information about the if conditional, enter the following
> >     command at the MSH command prompt:
> > 
> > 
> >         help about_if
> > 
> > 
> >     For information about script blocks, enter the following command at
> >     the MSH command prompt:
> > 
> > 
> >         help about_Script_block
> 
.



Relevant Pages

  • Re: Calling Method From Switch{}
    ... the switch, as long as it's simple like the OP's original code sample. ... If the switch statement is only ever evaluated once the choice between ... can avoid repeating the evaluation altogether; ... increase performance over "ifs", which are certainly required if an OO ...
    (microsoft.public.dotnet.languages.csharp)
  • Re: Calling Method From Switch{}
    ... the switch, as long as it's simple like the OP's original code sample. ... If the switch statement is only ever evaluated once the choice between ... can avoid repeating the evaluation altogether; ... increase performance over "ifs", which are certainly required if an OO ...
    (microsoft.public.dotnet.languages.csharp)
  • Re: Coding Horrors, Cargo Cult Programming, and other Ghoulish Things
    ... writing code that fails when you change a compiler switch in the IDE or the build tool is bad style. ... DO NOT WRITE CODE THAT ONLY WORK WITH SHORT-CIRCUIT BOOL EVALUATION!. ... Or make damn sure that your personal preference really works, and write that switch in the pas file, or in a inc file. ... in my screens. ...
    (borland.public.delphi.non-technical)
  • Switching from Ad Hoc to access point mode and visa-versa
    ... I've downloaded the evaluation version. ... and switch the mode to and from accesspoint ... You could download the evaluation version of PB and go from ... >> Currently the switch in connection mode has to be done manually ...
    (microsoft.public.windowsce.embedded.vc)
  • Re: Switch for floating !!
    ... Why does the switch case statement does not have support ... characters representing elements of text, whose codes are arbitrarily assigned, ... Would you use a giant switch statement to distinguish fibonacci integers from ... You need a better example to actually rationalize switching on floating point ...
    (comp.lang.c)

Loading