Skip to main content
-1 votes
3 answers
90 views

I'm facing the issue that SwiftUI's TextField with a number format seems to ignore the locale set by the environment modifier. struct MyView: View { @State var number: Decimal = 1.1 var ...
Lukas Würzburger's user avatar
-3 votes
1 answer
75 views

I am reading temperature values from a PLC. The values are stored in Double_Word (4 bytes) in the form of "1102393648". Always 10 digits, and always starting with 110. They should be around ...
youreallydontneedtoknow's user avatar
-1 votes
2 answers
63 views

Use " " (a space) to insert a space before positive numbers and a minus sign before negative numbers: txt = "The temperature is between{: } and{: } degrees celsius." print(txt....
dammy adeyemi's user avatar
2 votes
2 answers
122 views

I'm using the PowerShell ImportExcel module to export XML data into an Excel file. I've currently got a working script that converts the data from XML to an array of PowerShellCustomObjects, and then ...
user30649594's user avatar
3 votes
1 answer
377 views

I've got some data in a CSV file that I'm trying to convert to an XLSX file. I've been trying this using the Import-Excel PS module. Here is an extract of what the CSV file looks like: AMOUNT_BOUGHT,...
user30649594's user avatar
2 votes
1 answer
68 views

When trying to make a Date readable we sometimes use numeric-edited field,e.g. 01 Date-Readable pic 99.99.99. Decimal-Point is comma is in effect. Although this solution is not how the decimal point ...
user30144283's user avatar
0 votes
3 answers
126 views

I know I can use format in order to format a number to whatever format. What I want is to format to at most n digts. This can be achieved using the g-format-specifier. But there's one caveat here. ...
MakePeaceGreatAgain's user avatar
2 votes
2 answers
124 views

While implementing a PSTypeConverter for my class/type, I stumbled on a curious bit of Powershell magic (puzzle?) having to do with string-to-number conversion: "1,2,3,4" -as [int] ...
kjaz's user avatar
  • 21
-2 votes
2 answers
88 views

I would like to print a slice of float64 values line by line having all decimal points at the same position in each line. I could print the integer part right justified, the decimal point and then the ...
Thomas Höhenleitner's user avatar
1 vote
0 answers
99 views

I've been trying to localize default number formatting in Apache Superset charts, specifically the SI suffixes used in formats like .2s. Out of the box, Superset uses D3 defaults — k, M, B — but I ...
Данил Басов's user avatar
0 votes
0 answers
39 views

I am using ClosedXML to create an Excel file. The issue is I am having amount value in string variable and I want to display it with comma separate number format (like Indian currency culture). Having ...
iDipa's user avatar
  • 345
2 votes
1 answer
73 views

I'm trying to print out current year (CX), month (DH), day (DL) and day of the week (AL) from system timer. Year stored in CX is printed out correctly. I tried to printout DH, DL and AL with ...
Coder4Fun250's user avatar
1 vote
1 answer
76 views

Let's consider in Flutter we are showing the number in language English. When the user changes the language to Hindi or any other Indian language, the number should be displayed as per the language, ...
RANJIT KUMAR SAHU's user avatar
1 vote
1 answer
759 views

I'm trying to come up with a better approach for my other problem: Avalonia: Get Numeric UpDown to parse the text on lost focus In short: I'd like a TextBox that ignores non-numeric characters while ...
Frederik Steinmetz's user avatar
0 votes
1 answer
157 views

I have a numeric up down like this: <NumericUpDown Value="{Binding Samples}" ShowButtonSpinner="False" ParsingNumberStyle="Integer"/> Then I use this on the ...
Frederik Steinmetz's user avatar

15 30 50 per page
1
2 3 4 5
195