我正在尝试使用字符串的.format方法。但如果我在字符串中放置%1、%2等,则会抛出Java .util. unknownformatconversionexception,指向一个令人困惑的Java源代码段:

private void checkText(String s) {

    int idx;

    // If there are any '%' in the given string, we got a bad format
    // specifier.
    if ((idx = s.indexOf('%')) != -1) {
        char c = (idx > s.length() - 2 ? '%' : s.charAt(idx + 1));
        throw new UnknownFormatConversionException(String.valueOf(c));
    }
}

由此我明白% char是禁止的。如果是这样,那么我应该使用什么参数占位符?

我使用Scala 2.8。


当前回答

下面是String.format()使用的格式化程序列表

http://docs.oracle.com/javase/1.5.0/docs/api/java/util/Formatter.html

其他回答

下面是String.format()使用的格式化程序列表

http://docs.oracle.com/javase/1.5.0/docs/api/java/util/Formatter.html

还要注意,Scala用许多方法扩展了String(通过Predef引入的WrappedString的隐式转换),所以你还可以做以下事情:

val formattedString = "Hello %s, isn't %s cool?".format("Ivan", "Scala")

在scala中,对于字符串插值,我们有$,这节省了时间,让我们的生活变得更容易:

例如:你想定义一个函数,它接受输入的名字和年龄,并说Hello With名字并说它的年龄。 可以这样写:

def funcStringInterpolationDemo(name:String,age:Int)=s"Hey ! my name is $name and my age is $age"

因此,当你像这样调用这个函数:

funcStringInterpolationDemo("Shivansh",22)

它的输出将是:

Hey ! my name is Shivansh and my age is 22

您可以在同一行中编写代码来更改它,例如,如果您想在年龄上添加10年!

那么函数可以是:

def funcStringInterpolationDemo(name:String,age:Int)=s"Hey ! my name is $name and my age is ${age+10}"

现在输出是:

Hey ! my name is Shivansh and my age is 32

虽然前面所有的回答都是正确的,但它们都是用Java编写的。下面是一个Scala示例:

val placeholder = "Hello %s, isn't %s cool?"
val formatted = placeholder.format("Ivan", "Scala")

我也有一篇博客文章是关于如何制作类似Python的%操作符的格式,这可能会很有用。

您应该阅读javadoc String.format()和Formatter语法,而不是查看源代码。

在%之后指定值的格式。例如十进制整数是d,字符串是s:

String aString = "world";
int aInt = 20;
String.format("Hello, %s on line %d",  aString, aInt );

输出:

Hello, world on line 20

要完成您尝试的操作(使用参数索引),您可以使用:*n*$,

String.format("Line:%2$d. Value:%1$s. Result: Hello %1$s at line %2$d", aString, aInt );

输出:

Line:20. Value:world. Result: Hello world at line 20