文字列フォーマットの名前付きプレースホルダー


174

Pythonでは、文字列をフォーマットするときに、次のように、位置ではなく名前でプレースホルダーを埋めることができます。

print "There's an incorrect value '%(value)s' in column # %(column)d" % \
  { 'value': x, 'column': y }

私はそれがJavaで可能であれば(おそらく、外部ライブラリなしで)可能ですか?


MessageFormatを拡張して、変数からその中のインデックスへのマッピング機能を実装できます。
vpram86 2010


1
いくつかの歴史:JavaはC / C ++をこの問題に関してほとんどコピーしましたが、それ%sは一般的な慣行であったC ++の世界から開発者を誘惑しようとしたためです。en.wikipedia.org/wiki/Printf_format_string#Historyまた、一部のIDEとFindBugsは、不一致の%sと%dのカウントを自動的に検出する場合がありますが、名前付きフィールドの方が好ましいことにも注意してください。
Christophe Roussy

回答:


143

jakarta commons langのStrSubstitutorは、値がすでに正しくフォーマットされている場合に、これを行う軽量な方法です。

http://commons.apache.org/proper/commons-lang/javadocs/api-3.1/org/apache/commons/lang3/text/StrSubstitutor.html

Map<String, String> values = new HashMap<String, String>();
values.put("value", x);
values.put("column", y);
StrSubstitutor sub = new StrSubstitutor(values, "%(", ")");
String result = sub.replace("There's an incorrect value '%(value)' in column # %(column)");

上記の結果:

「列#2に誤った値「1」があります」

Mavenを使用する場合は、この依存関係をpom.xmlに追加できます。

<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-lang3</artifactId>
    <version>3.4</version>
</dependency>

2
キーが見つからない場合、ライブラリがスローしないのは残念ですが、${arg}上記のカスタム構文()の代わりにデフォルトの構文()を使用すると%(arg)、正規表現がコンパイルされません。これは望ましい効果です。
ジョンレーマン2015年

2
キーがマップに存在しない場合、カスタムVariableResolverを設定して例外をスローできます。
Mene

7
古いスレッドですが、3.6以降、テキストパッケージはcommons-textの代わりに廃止されました。commons.apache.org/proper/commons-text
Jeff Walker

73

完全ではありませんが、MessageFormatを使用して1つの値を複数回参照できます。

MessageFormat.format("There's an incorrect value \"{0}\" in column # {1}", x, y);

上記はString.format()でも実行できますが、複雑な式を作成する必要がある場合は、messageFormat構文がよりクリーンであり、文字列に入れるオブジェクトのタイプを気にする必要はありません。


なぜできないのかわからない、文字列内の位置は重要ではなく、argsのリスト内の位置だけが重要なので、名前の変更の問題になります。キーの名前がわかっているため、引数のリストでキーの位置を決定できます。今後、値は0、列は1と呼ばれます。MessageeFormat.format( "列{1}に不正な値\" {0} \ "があります。値として{0}を使用すると、多くの問題が発生する可能性があります"、valueMap .get( 'value')、valueMap.get( 'column'));
giladbu

1
手がかりをありがとう、それは私が望んでいることを正確に実行する単純な関数を書くのに役立ちました(私はそれを以下に入れました)。
アンディ

1
同意された、構文ははるかにきれいです。数値のフォーマットに関して、あまりにも悪いMessageFormatはそれ自身の頭を持っています。
Kees de Kooter 16

また、単一引用符で囲まれたプレースホルダーは無視されるようです。
Kees de Kooter 16

MessageFormatjsonのコンテンツが比較的大きい場合はすばらしいですが扱いにくい
EliuX

32

単純な名前付きプレースホルダーのApache Common StringSubstitutorの別の例。

String template = "Welcome to {theWorld}. My name is {myName}.";

Map<String, String> values = new HashMap<>();
values.put("theWorld", "Stackoverflow");
values.put("myName", "Thanos");

String message = StringSubstitutor.replace(template, values, "{", "}");

System.out.println(message);

// Welcome to Stackoverflow. My name is Thanos.

非常に大きなファイルをロードする場合、このライブラリは、replaceIn値をバッファに代入するStringBuilderまたはTextStringBuilder もサポートしていることを発見しました。この方法では、ファイルの内容全体がメモリに読み込まれません。
Edward Corrigall

15

あなたはStringTemplateライブラリを使用することができます、それはあなたが望むものとはるかに多くを提供します。

import org.antlr.stringtemplate.*;

final StringTemplate hello = new StringTemplate("Hello, $name$");
hello.setAttribute("name", "World");
System.out.println(hello.toString());

'charに問題がありました:unexpected char: '''
AlikElzin-kilaka

11

以下のために非常に単純な例は、単に、置き換えがライブラリーの必要性をハードコードされた文字列を使用することはできません。

    String url = "There's an incorrect value '%(value)' in column # %(column)";
    url = url.replace("%(value)", x); // 1
    url = url.replace("%(column)", y); // 2

警告:できるだけ単純なコードを示したかっただけです。もちろん、コメントで述べられているように、セキュリティが重要である深刻な製品コードにはこれを使用しないでください。ここでは、エスケープ、エラー処理、およびセキュリティが問題になります。しかし、最悪の場合、「良い」libを使用する必要がある理由がわかります:-)


1
これはシンプルで簡単ですが、欠点は、値が見つからなかったときに静かに失敗することです。プレースホルダーを元の文字列に残すだけです。
kiedysktos

@kiedysktos、チェックを行うことで改善できるかもしれませんが、完全なものが必要な場合は、libを使用してください:)
Christophe Roussy

2
警告:この手法は中間置換結果を独自のフォーマット文字列として扱うため、このソリューションはフォーマット文字列攻撃に対して脆弱です。正しい解決策では、フォーマット文字列を1回パスする必要があります。
200_成功

@ 200_successはい、セキュリティについて説明します。もちろん、このコードは本番環境での使用を目的としたものではありません...
Christophe Roussy

8

あなたのすべての協力に感謝します!すべての手がかりを使用して、私がやりたいことを正確に実行するルーチンを作成しました-辞書を使用したpythonのような文字列フォーマット。私はJavaの初心者なので、ヒントはありがたいです。

public static String dictFormat(String format, Hashtable<String, Object> values) {
    StringBuilder convFormat = new StringBuilder(format);
    Enumeration<String> keys = values.keys();
    ArrayList valueList = new ArrayList();
    int currentPos = 1;
    while (keys.hasMoreElements()) {
        String key = keys.nextElement(),
        formatKey = "%(" + key + ")",
        formatPos = "%" + Integer.toString(currentPos) + "$";
        int index = -1;
        while ((index = convFormat.indexOf(formatKey, index)) != -1) {
            convFormat.replace(index, index + formatKey.length(), formatPos);
            index += formatPos.length();
        }
        valueList.add(values.get(key));
        ++currentPos;
    }
    return String.format(convFormat.toString(), valueList.toArray());
}

ロンボの回答とは異なり、これはを含むことができないため、無限ループに陥るformatPosことはありませんformatKey
アーロンデュフォー

6
警告:ループは中間置換結果を独自のフォーマット文字列として扱うため、このソリューションはフォーマット文字列攻撃に対して脆弱です。正しいソリューションでは、フォーマット文字列を1回パスする必要があります。
200_success

6

これは古いスレッドですが、念のため、次のようにJava 8スタイルを使用することもできます。

public static String replaceParams(Map<String, String> hashMap, String template) {
    return hashMap.entrySet().stream().reduce(template, (s, e) -> s.replace("%(" + e.getKey() + ")", e.getValue()),
            (s, s2) -> s);
}

使用法:

public static void main(String[] args) {
    final HashMap<String, String> hashMap = new HashMap<String, String>() {
        {
            put("foo", "foo1");
            put("bar", "bar1");
            put("car", "BMW");
            put("truck", "MAN");
        }
    };
    String res = replaceParams(hashMap, "This is '%(foo)' and '%(foo)', but also '%(bar)' '%(bar)' indeed.");
    System.out.println(res);
    System.out.println(replaceParams(hashMap, "This is '%(car)' and '%(foo)', but also '%(bar)' '%(bar)' indeed."));
    System.out.println(replaceParams(hashMap, "This is '%(car)' and '%(truck)', but also '%(foo)' '%(bar)' + '%(truck)' indeed."));
}

出力は次のようになります。

This is 'foo1' and 'foo1', but also 'bar1' 'bar1' indeed.
This is 'BMW' and 'foo1', but also 'bar1' 'bar1' indeed.
This is 'BMW' and 'MAN', but also 'foo1' 'bar1' + 'MAN' indeed.

これは素晴らしいですが、残念なことに、ここでの仕様に違反します。上記のものは、代わりにIDを返します。また、このルールにも違反しています
。combiner.apply

興味深い...しかし、マップを渡すためのより良い方法を提案する場合に限り、また、可能であれば、ほとんどのフォーマットコードのようにテンプレートの後にあります。
Christophe Roussy

4
警告:.reduce()は中間置換結果を独自のフォーマット文字列として扱うため、このソリューションはフォーマット文字列攻撃に対して脆弱です。正しいソリューションでは、フォーマット文字列を1回パスする必要があります。
200_success

6
public static String format(String format, Map<String, Object> values) {
    StringBuilder formatter = new StringBuilder(format);
    List<Object> valueList = new ArrayList<Object>();

    Matcher matcher = Pattern.compile("\\$\\{(\\w+)}").matcher(format);

    while (matcher.find()) {
        String key = matcher.group(1);

        String formatKey = String.format("${%s}", key);
        int index = formatter.indexOf(formatKey);

        if (index != -1) {
            formatter.replace(index, index + formatKey.length(), "%s");
            valueList.add(values.get(key));
        }
    }

    return String.format(formatter.toString(), valueList.toArray());
}

例:

String format = "My name is ${1}. ${0} ${1}.";

Map<String, Object> values = new HashMap<String, Object>();
values.put("0", "James");
values.put("1", "Bond");

System.out.println(format(format, values)); // My name is Bond. James Bond.

2
ここでの他のソリューションのほとんどが脆弱であるフォーマット文字列攻撃を回避するので、これは答えであるはずです。Java 9では、.replaceAll()文字列置換コールバックがサポートされているため、はるかに簡単です。
200_success

外部ライブラリを使用しないため、これが答えになるはずです。
Bohao LI

3

私はあなたが望むことを正確に行う小さなライブラリの作者です:

Student student = new Student("Andrei", 30, "Male");

String studStr = template("#{id}\tName: #{st.getName}, Age: #{st.getAge}, Gender: #{st.getGender}")
                    .arg("id", 10)
                    .arg("st", student)
                    .format();
System.out.println(studStr);

または、引数を連鎖させることもできます。

String result = template("#{x} + #{y} = #{z}")
                    .args("x", 5, "y", 10, "z", 15)
                    .format();
System.out.println(result);

// Output: "5 + 10 = 15"

ライブラリで条件ベースのフォーマットを行うことは可能ですか?
gaurav

@gauravは完全ではありません。必要な場合は、フル機能のテンプレートライブラリが必要です。
Andrei Ciobanu

2

Apache Commons LangのreplaceEachメソッドは、特定のニーズによっては便利な場合があります。これを簡単に使用して、次の1つのメソッド呼び出しでプレースホルダーを名前で置き換えることができます。

StringUtils.replaceEach("There's an incorrect value '%(value)' in column # %(column)",
            new String[] { "%(value)", "%(column)" }, new String[] { x, y });

いくつかの入力テキストが与えられると、これは最初の文字列配列内のすべてのプレースホルダーを2番目の文字列内の対応する値に置き換えます。


1

あなたは文字列ヘルパークラスでこのようなものを持つことができます

/**
 * An interpreter for strings with named placeholders.
 *
 * For example given the string "hello %(myName)" and the map <code>
 *      <p>Map<String, Object> map = new HashMap<String, Object>();</p>
 *      <p>map.put("myName", "world");</p>
 * </code>
 *
 * the call {@code format("hello %(myName)", map)} returns "hello world"
 *
 * It replaces every occurrence of a named placeholder with its given value
 * in the map. If there is a named place holder which is not found in the
 * map then the string will retain that placeholder. Likewise, if there is
 * an entry in the map that does not have its respective placeholder, it is
 * ignored.
 *
 * @param str
 *            string to format
 * @param values
 *            to replace
 * @return formatted string
 */
public static String format(String str, Map<String, Object> values) {

    StringBuilder builder = new StringBuilder(str);

    for (Entry<String, Object> entry : values.entrySet()) {

        int start;
        String pattern = "%(" + entry.getKey() + ")";
        String value = entry.getValue().toString();

        // Replace every occurence of %(key) with value
        while ((start = builder.indexOf(pattern)) != -1) {
            builder.replace(start, start + pattern.length(), value);
        }
    }

    return builder.toString();
}

どうもありがとう、それはほとんど私が望んでいることをしますが、唯一のことは修飾子を考慮しないことです( "%(key)08d"を考慮してください)
Andy

1
また、使用されている値のいずれかに対応するエントリが含まれている場合、これは無限ループに入ることに注意してください。
アーロンデュフォー

1
警告:ループは中間置換結果を独自のフォーマット文字列として扱うため、このソリューションはフォーマット文字列攻撃に対して脆弱です。正しいソリューションでは、フォーマット文字列を1回パスする必要があります。
-200_success

1

私の答えは:

a)可能な場合はStringBuilderを使用する

b)(プレースホルダー)の位置を保持し(任意の形式:整数はドルマクロなどの特別な特殊文字です)、使用しますStringBuilder.insert()(引数のいくつかのバージョン)。

StringBuilderが内部でStringに変換されると、外部ライブラリを使用するのはやり過ぎのようで、パフォーマンスが大幅に低下します。


1

私がクラスを作成した答えに基づいてMapBuilder

public class MapBuilder {

    public static Map<String, Object> build(Object... data) {
        Map<String, Object> result = new LinkedHashMap<>();

        if (data.length % 2 != 0) {
            throw new IllegalArgumentException("Odd number of arguments");
        }

        String key = null;
        Integer step = -1;

        for (Object value : data) {
            step++;
            switch (step % 2) {
                case 0:
                    if (value == null) {
                        throw new IllegalArgumentException("Null key value");
                    }
                    key = (String) value;
                    continue;
                case 1:
                    result.put(key, value);
                    break;
            }
        }

        return result;
    }

}

次にStringFormat、文字列フォーマット用のクラスを作成しました。

public final class StringFormat {

    public static String format(String format, Object... args) {
        Map<String, Object> values = MapBuilder.build(args);

        for (Map.Entry<String, Object> entry : values.entrySet()) {
            String key = entry.getKey();
            Object value = entry.getValue();
            format = format.replace("$" + key, value.toString());
        }

        return format;
    }

}

あなたはそのように使うことができます:

String bookingDate = StringFormat.format("From $startDate to $endDate"), 
        "$startDate", formattedStartDate, 
        "$endDate", formattedEndDate
);

1
警告:ループは中間置換結果を独自のフォーマット文字列として扱うため、このソリューションはフォーマット文字列攻撃に対して脆弱です。正しいソリューションでは、フォーマット文字列を1回パスする必要があります。
-200_success

1

文字列をフォーマットして変数の出現を置き換えることができるutil / helperクラス(jdk 8を使用)も作成しました。

この目的のために、すべての置換を行い、フォーマット文字列の影響を受ける部分のみをループするマッチャーの「appendReplacement」メソッドを使用しました。

ヘルパークラスは、現時点ではjavadocで文書化されていません。私はこれを将来変更します;)とにかく、私は最も重要な行にコメントしました(私は願っています)。

    public class FormatHelper {

    //Prefix and suffix for the enclosing variable name in the format string.
    //Replace the default values with any you need.
    public static final String DEFAULT_PREFIX = "${";
    public static final String DEFAULT_SUFFIX = "}";

    //Define dynamic function what happens if a key is not found.
    //Replace the defualt exception with any "unchecked" exception type you need or any other behavior.
    public static final BiFunction<String, String, String> DEFAULT_NO_KEY_FUNCTION =
            (fullMatch, variableName) -> {
                throw new RuntimeException(String.format("Key: %s for variable %s not found.",
                                                         variableName,
                                                         fullMatch));
            };
    private final Pattern variablePattern;
    private final Map<String, String> values;
    private final BiFunction<String, String, String> noKeyFunction;
    private final String prefix;
    private final String suffix;

    public FormatHelper(Map<String, String> values) {
        this(DEFAULT_NO_KEY_FUNCTION, values);
    }

    public FormatHelper(
            BiFunction<String, String, String> noKeyFunction, Map<String, String> values) {
        this(DEFAULT_PREFIX, DEFAULT_SUFFIX, noKeyFunction, values);
    }

    public FormatHelper(String prefix, String suffix, Map<String, String> values) {
        this(prefix, suffix, DEFAULT_NO_KEY_FUNCTION, values);
    }

    public FormatHelper(
            String prefix,
            String suffix,
            BiFunction<String, String, String> noKeyFunction,
            Map<String, String> values) {
        this.prefix = prefix;
        this.suffix = suffix;
        this.values = values;
        this.noKeyFunction = noKeyFunction;

        //Create the Pattern and quote the prefix and suffix so that the regex don't interpret special chars.
        //The variable name is a "\w+" in an extra capture group.
        variablePattern = Pattern.compile(Pattern.quote(prefix) + "(\\w+)" + Pattern.quote(suffix));
    }

    public static String format(CharSequence format, Map<String, String> values) {
        return new FormatHelper(values).format(format);
    }

    public static String format(
            CharSequence format,
            BiFunction<String, String, String> noKeyFunction,
            Map<String, String> values) {
        return new FormatHelper(noKeyFunction, values).format(format);
    }

    public static String format(
            String prefix, String suffix, CharSequence format, Map<String, String> values) {
        return new FormatHelper(prefix, suffix, values).format(format);
    }

    public static String format(
            String prefix,
            String suffix,
            BiFunction<String, String, String> noKeyFunction,
            CharSequence format,
            Map<String, String> values) {
        return new FormatHelper(prefix, suffix, noKeyFunction, values).format(format);
    }

    public String format(CharSequence format) {

        //Create matcher based on the init pattern for variable names.
        Matcher matcher = variablePattern.matcher(format);

        //This buffer will hold all parts of the formatted finished string.
        StringBuffer formatBuffer = new StringBuffer();

        //loop while the matcher finds another variable (prefix -> name <- suffix) match
        while (matcher.find()) {

            //The root capture group with the full match e.g ${variableName}
            String fullMatch = matcher.group();

            //The capture group for the variable name resulting from "(\w+)" e.g. variableName
            String variableName = matcher.group(1);

            //Get the value in our Map so the Key is the used variable name in our "format" string. The associated value will replace the variable.
            //If key is missing (absent) call the noKeyFunction with parameters "fullMatch" and "variableName" else return the value.
            String value = values.computeIfAbsent(variableName, key -> noKeyFunction.apply(fullMatch, key));

            //Escape the Map value because the "appendReplacement" method interprets the $ and \ as special chars.
            String escapedValue = Matcher.quoteReplacement(value);

            //The "appendReplacement" method replaces the current "full" match (e.g. ${variableName}) with the value from the "values" Map.
            //The replaced part of the "format" string is appended to the StringBuffer "formatBuffer".
            matcher.appendReplacement(formatBuffer, escapedValue);
        }

        //The "appendTail" method appends the last part of the "format" String which has no regex match.
        //That means if e.g. our "format" string has no matches the whole untouched "format" string is appended to the StringBuffer "formatBuffer".
        //Further more the method return the buffer.
        return matcher.appendTail(formatBuffer)
                      .toString();
    }

    public String getPrefix() {
        return prefix;
    }

    public String getSuffix() {
        return suffix;
    }

    public Map<String, String> getValues() {
        return values;
    }
}

次のような値(またはサフィックスプレフィックスまたはnoKeyFunction)を使用して、特定のマップのクラスインスタンスを作成できます。

    Map<String, String> values = new HashMap<>();
    values.put("firstName", "Peter");
    values.put("lastName", "Parker");


    FormatHelper formatHelper = new FormatHelper(values);
    formatHelper.format("${firstName} ${lastName} is Spiderman!");
    // Result: "Peter Parker is Spiderman!"
    // Next format:
    formatHelper.format("Does ${firstName} ${lastName} works as photographer?");
    //Result: "Does Peter Parker works as photographer?"

さらに、値Mapのキーが欠落している場合に何が起こるかを定義できます(たとえば、フォーマット文字列の誤った変数名やMapで欠落しているキーなど、両方の方法で機能します)。デフォルトの動作は、次のようなスローされたチェックされていない例外です(チェックされた例外を処理できないデフォルトのjdk8関数を使用しているためチェックされていません)。

    Map<String, String> map = new HashMap<>();
    map.put("firstName", "Peter");
    map.put("lastName", "Parker");


    FormatHelper formatHelper = new FormatHelper(map);
    formatHelper.format("${missingName} ${lastName} is Spiderman!");
    //Result: RuntimeException: Key: missingName for variable ${missingName} not found.

次のように、コンストラクター呼び出しでカスタム動作を定義できます。

Map<String, String> values = new HashMap<>();
values.put("firstName", "Peter");
values.put("lastName", "Parker");


FormatHelper formatHelper = new FormatHelper(fullMatch, variableName) -> variableName.equals("missingName") ? "John": "SOMETHING_WRONG", values);
formatHelper.format("${missingName} ${lastName} is Spiderman!");
// Result: "John Parker is Spiderman!"

または、デフォルトのキーなしの動作に戻します。

...
    FormatHelper formatHelper = new FormatHelper((fullMatch, variableName) ->   variableName.equals("missingName") ? "John" :
            FormatHelper.DEFAULT_NO_KEY_FUNCTION.apply(fullMatch,
                                                       variableName), map);
...

より適切に処理するために、次のような静的メソッド表現もあります。

Map<String, String> values = new HashMap<>();
values.put("firstName", "Peter");
values.put("lastName", "Parker");

FormatHelper.format("${firstName} ${lastName} is Spiderman!", map);
// Result: "Peter Parker is Spiderman!"

1

現時点では、Javaに組み込まれているものはありません。独自の実装を書くことをお勧めします。私の好みは、マップを作成してそれを関数に渡すのではなく、単純な流暢なビルダーインターフェイスを使用することです。たとえば、次のように、コードの連続した素晴らしいチャンクができます。

String result = new TemplatedStringBuilder("My name is {{name}} and I from {{town}}")
   .replace("name", "John Doe")
   .replace("town", "Sydney")
   .finish();

ここに簡単な実装があります:

class TemplatedStringBuilder {

    private final static String TEMPLATE_START_TOKEN = "{{";
    private final static String TEMPLATE_CLOSE_TOKEN = "}}";

    private final String template;
    private final Map<String, String> parameters = new HashMap<>();

    public TemplatedStringBuilder(String template) {
        if (template == null) throw new NullPointerException();
        this.template = template;
    }

    public TemplatedStringBuilder replace(String key, String value){
        parameters.put(key, value);
        return this;
    }

    public String finish(){

        StringBuilder result = new StringBuilder();

        int startIndex = 0;

        while (startIndex < template.length()){

            int openIndex  = template.indexOf(TEMPLATE_START_TOKEN, startIndex);

            if (openIndex < 0){
                result.append(template.substring(startIndex));
                break;
            }

            int closeIndex = template.indexOf(TEMPLATE_CLOSE_TOKEN, openIndex);

            if(closeIndex < 0){
                result.append(template.substring(startIndex));
                break;
            }

            String key = template.substring(openIndex + TEMPLATE_START_TOKEN.length(), closeIndex);

            if (!parameters.containsKey(key)) throw new RuntimeException("missing value for key: " + key);

            result.append(template.substring(startIndex, openIndex));
            result.append(parameters.get(key));

            startIndex = closeIndex + TEMPLATE_CLOSE_TOKEN.length();
        }

        return result.toString();
    }
}

0

ライブラリをテンプレート化するFreemarkerを試してください。

代替テキスト


4
フリーマーカー?私は彼がプレーンJavaでこれを行う方法を知って喜んでいると思います。とにかく、Freemarkerが考えられる答えである場合、JSPも正しい答えになると言えるでしょうか?
Rakesh Juyal 2010

1
おかげで、私の手元のタスクでは、これは一種のやり過ぎのようです。しかし、ありがとう。
アンディ

1
@Rakesh JSPは、非常に「ビュー/ FE」固有のものです。私は過去にFreeMarkerを使用してXMLを生成し、JAVAファイルを生成することさえありました。アンディは、自分でユーティリティを1つ(または上記のユーティリティのように)作成する必要があるのではないかと心配しています
Kannan Ekanath 2010

@Borisどちらがより優れたフリーマーカー対速度対文字列テンプレートですか?
gaurav



0

公式のICU4Jライブラリをご覧ください。これは、JDKで使用可能なものと同様のMessageFormatクラスを提供しますが、この前者は名前付きプレースホルダーをサポートしています。

このページで提供される他のソリューションとは異なり。ICU4jは、IBMによって保守され、定期的に更新されるICUプロジェクトの一部です。また、複数化などの高度なユースケースにも対応しています。

次にコード例を示します。

MessageFormat messageFormat =
        new MessageFormat("Publication written by {author}.");

Map<String, String> args = Map.of("author", "John Doe");

System.out.println(messageFormat.format(args));

0

Java(Kotlin、JavaScriptなど)で文字列補間を使用するJavaプラグインがあります。サポートするJava 8、9、10、11 ... https://github.com/antkorwin/better-strings

文字列リテラルでの変数の使用:

int a = 3;
int b = 4;
System.out.println("${a} + ${b} = ${a+b}");

式の使用:

int a = 3;
int b = 4;
System.out.println("pow = ${a * a}");
System.out.println("flag = ${a > b ? true : false}");

関数の使用:

@Test
void functionCall() {
    System.out.println("fact(5) = ${factorial(5)}");
}

long factorial(int n) {
    long fact = 1;
    for (int i = 2; i <= n; i++) {
        fact = fact * i;
    }
    return fact;
}

詳細については、プロジェクトのREADMEをお読みください。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.