Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fill/alignment overrides # specifier in format strings #34341

Closed
ketsuban opened this issue Jun 18, 2016 · 2 comments
Closed

Fill/alignment overrides # specifier in format strings #34341

ketsuban opened this issue Jun 18, 2016 · 2 comments
Labels
T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.

Comments

@ketsuban
Copy link
Contributor

Here's a sample program.

fn main() {
    let foo: u8 = 0xA;
    println!("{:b}", foo);
    println!("{:>08b}", foo);
    println!("{:#b}", foo);
    println!("{:#>08b}", foo); // <--
}

I expected this output.

1010
00001010
0b1010
0b00001010

I got this output.

1010
00001010
0b1010
00001010
@hirschenberger
Copy link
Contributor

hirschenberger commented Mar 21, 2017

Your format string is wrong. The syntax from the doc is:

format_spec := [[fill]align][sign]['#']['0'][width]['.' precision][type]

So the formatstring should be {:>#08b} and this works https://is.gd/Wpxf90 in your example, the # is the fill character before the alignment. Also {:#>#8b} works as expected.

But in my opinion it should fail to compile.

@steveklabnik steveklabnik added T-libs-api Relevant to the library API team, which will review and decide on the PR/issue. and removed A-libs labels Mar 24, 2017
@Mark-Simulacrum
Copy link
Member

Mark-Simulacrum commented Jun 16, 2017

Yes, the format syntax does appear to be incorrect here, and should be {:>#010b} to produce the result you expected.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
T-libs-api Relevant to the library API team, which will review and decide on the PR/issue.
Projects
None yet
Development

No branches or pull requests

5 participants