formatting Questions

2

I'm looking to find a good source of documentation on the different parameters in the eclipse code formatter. I've found some good examples of specific parameters on stack overflow but can't find a...
Albertype asked 11/6, 2021 at 18:26

6

Solved

How do I insert a smiley in the HTML programatically? I want to know the logic as how does it exist along with text? Is it a styled ASCII character or something? thanks in advance.
Fusil asked 9/12, 2010 at 4:29

4

Solved

I use "g" for formatting floating point values, but it switches to scientific formatting too soon for me - at the 5th digit: >>> format(0.0001, "g") '0.0001' >>> format(0.00001, ...
Stockyard asked 7/1, 2011 at 14:16

28

Solved

How can I convert all numbers that are more than 3 digits down to a 4 digit or less number? This is exactly what I mean: 10345 = 10.3k 10012 = 10k 123546 = 123.5k 4384324 = 4.3m Rounding is not...
Jacklighter asked 16/8, 2013 at 6:37

5

Solved

I've been playing with Go recently and it's awesome. The thing I can't seem to figure out (after looking through documentation and blog posts) is how to get the time.Time type to format into whatev...
Skatole asked 16/5, 2014 at 12:53

7

I tried Ctrl + K, Ctrl + D, but it only works for *.cs files. JSON file has no errors and it isn't big, but when I press Ctrl + K, Ctrl + D it says the command is unavailable. I tried some other co...
Steffy asked 4/2, 2020 at 1:17

7

Solved

There seems to be a lack of formatting settings for vscode. I want to be able to format html such that my html shows up as: <div attrib1=value1 attrib2=value2 attrib3=value3> Content <...
Supplemental asked 6/11, 2015 at 5:40

12

Solved

I am trying to write a paper in IPython notebook, but encountered some issues with display format. Say I have following dataframe df, is there any way to format var1 and var2 into 2 digit decimals ...
Quintessa asked 1/6, 2014 at 15:48

2

When writing code in a Blazor (.razor) component, it formats it like this: @code { void Abc() { } } Then I'll correct the indentation: @code { void Abc() { } } but then whenever I insert ...
Electoral asked 3/4, 2021 at 11:31

25

Solved

What is the best way to convert the following JSON returned value from a 24-hour format to 12-hour format w/ AM & PM? The date should stay the same - the time is the only thing that needs forma...
Md asked 4/2, 2011 at 13:38

27

I have a string "1112224444' it is a telephone number. I want to format as 111-222-4444 before I store it in a file. It is on a datarecord and I would prefer to be able to do this without assigning...
Boiardo asked 9/10, 2008 at 18:19

15

Solved

Does Go's fmt.Printf support outputting a number with the thousands comma? fmt.Printf("%d", 1000) outputs 1000, what format can I specify to output 1,000 instead? The docs don't seem to mention c...
Polyadelphous asked 22/10, 2012 at 21:38

9

I've tried piping htop to a text file (e.g. htop > text.txt) but it gives me text garbled by formatting strings (see below). Is there a way to get nicer, human readable output? ^[7^[[?47h^[[1;3...
Mazzola asked 8/7, 2013 at 19:39

3

Solved

How can I prevent VS Code from jumping to the bottom of a file after formatting? I select the whole file content (using the Ctrl + A), then I format everything (using the Alt + Shift + F). After th...
Tollefson asked 12/1, 2022 at 12:24

52

Solved

I am trying to print an integer in JavaScript with commas as thousands separators. For example, I want to show the number 1234567 as "1,234,567". How would I go about doing this? Here is ...
Calamite asked 24/5, 2010 at 23:42

18

Solved

I want to convert a java.util.Date object to a String in Java. The format is 2010-05-30 22:15:52
Religieux asked 16/4, 2011 at 0:56

8

Solved

Look at the problem: Normally, in the interactive Haskell environment, non-Latin Unicode characters (that make a part of the results) are printed escaped, even if the locale allows such characters ...
Schreibe asked 4/4, 2011 at 7:5

4

Solved

I am timing some unpredictable I/O. This code started := time.Now() time.Sleep(123456789 * time.Nanosecond) // unpredictable process fmt.Printf("%v", time.Since(started)) Produces 123.456789ms...
Chalone asked 16/10, 2019 at 13:43

3

When creating a datatable with filter = 'top' and also using a formatting function on a column, the formatting isn't applied to the filter control for that column. Is there a way to format the filt...
Gounod asked 2/10, 2017 at 19:33

3

Solved

I am using VS Code 1.17.2 with the following extensions installed (Unfortuanetly i can't link them since i don't have enough reputation): Angular 5 Snippets - TypeScript, Html, Angular Material,...

2

Solved

How can I make a part of a word bold in reStructuredText? Here is an example of what I need: ".rst stands for restructured text."
Horripilate asked 7/10, 2012 at 18:19

9

Solved

I know you can Format Code using Ctrl+F / Cmd+F in Visual Studio Code but how do you change the formatting options for each language? For example, in Visual Studio 2013 I can choose compact mode fo...
Rissa asked 5/5, 2015 at 22:44

2

Solved

I am trying to format a std::chrono::duration object to the format HH:MM::SS, e.g. 16:42:02 being the hours (16), the minutes (42), and the seconds (2). the library fmt offers useful formatting spe...
Glittery asked 10/11, 2023 at 17:13

17

When my elements with attributes get long, VS Code seems to break the line up into multiple lines: (I would like three lines here instead of seven, one line per element) I am using prettier for fo...
Develop asked 13/5, 2019 at 12:9

13

Solved

How can brackets be escaped in using string.Format? For example: String val = "1,2,3" String.Format(" foo {{0}}", val); This example doesn't throw an exception, but it outputs ...
Zeal asked 18/9, 2008 at 10:4

© 2022 - 2024 — McMap. All rights reserved.