vote up 4 vote down star

I need to convert strings with optional trailing signs into actual numbers using Powershell.

Possible strings are:

  • 1000-
  • 323+
  • 456

I'm trying to use System.Int.TryParse with a NumberStyles of AllowTrailingSign, but I can't work out how to make System.Globalization.NumberStyles available to Powershell.

flag

4 Answers

vote up 5 vote down check

EDIT: as per Halr9000's suggestion

$foo = "300-";
$bar = 0;
$numberStyles = [System.Globalization.NumberStyles];
$cultureInfo = [System.Globalization.CultureInfo];

[int]::TryParse($foo, $numberStyles::AllowTrailingSign, $cultureInfo::CurrentCulture, [ref]$bar);
link|flag
vote up 1 vote down

Here's a better way to get the enum values:

$type = [System.Globalization.NumberStyles]
[enum]::GetValues($type)
link|flag
Seems to me you mean: $type = [System.Globalization.NumberStyles];[enum]::GetValues($type); – Jim Burger Nov 19 '08 at 23:33
vote up 2 vote down
[System.Globalization.NumberStyles]::AllowTrailingSign

I should also point out, that when I'm dealing with enums in general, sometimes I can get by typing a string. E.g. in this case, just put

"AllowTrailingSign"

Final note, when quizzing an Enum for all possible values, use the line:

[System.Globalization.NumberStyles] | gm -static
link|flag
vote up 0 vote down

If you are sure that the signs could be - or +, String.Replace could help.

If you mean that 323- should return -323, checking for the sign and multiplying it by -1 would help.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.