How do you print a dollar sign $ in Dart

后端 未结 2 1919
遥遥无期
遥遥无期 2020-12-06 08:55

I need to actually print a Dollar sign in Dart, ahead of a variable. For example:

void main()
{
  int dollars=42;
          


        
相关标签:
2条回答
  • 2020-12-06 09:45

    You can use a backslash to escape:

    int dollars=42;
    print("I have \$$dollars."); // I have $42.
    

    When you are using literals instead of variables you can also use raw strings:

    print(r"I have $42."); // I have $42.
    
    0 讨论(0)
  • 2020-12-06 09:55

    Dart strings can be either raw or ... not raw (normal? cooked? interpreted? There isn't a formal name). I'll go with "interpreted" here, because it describes the problem you have.

    In a raw string, "$" and "\" mean nothing special, they are just characters like any other. In an interpreted string, "$" starts an interpolation and "\" starts an escape.

    Since you want the interpolation for "$dollars", you can't use "$" literally, so you need to escape it:

    int dollars = 42;
    print("I have \$$dollars.");
    

    If you don't want to use an escape, you can combine the string from raw and interpreted parts:

    int dollars = 42;
    print(r"I have $" "$dollars."); 
    

    Two adjacent string literals are combined into one string, even if they are different types of string.

    0 讨论(0)
提交回复
热议问题