dart 如何格式化插值字符串

vnzz0bqm  于 2023-05-11  发布在  其他
关注(0)|答案(7)|浏览(319)

我需要格式化一个像"Send %d seconds ago""Harry likes %s", "I think %1$s likes %2$s"这样的字符串。这些可以在Android中实现,但我不知道如何在Dart for Flutter中实现。

polkgigr

polkgigr1#

Dart支持字符串插值

var seconds = 5;
print("Send $seconds seconds ago");

var harryLikes = 'Silvia';
var otherName = 'Erik';
var otherLikes = 'Chess';
print("Harry like $harryLikes");
print("I think $otherName like $otherLikes");

更复杂的表达式也可以用${...}嵌入

print('Calc 3 + 5 = ${3 + 5}');

数字类型和intl包提供了更多格式化数字和日期的方法。
例如:

dced5bon

dced5bon2#

将以下内容添加到pubspec.yaml

dependencies:
  sprintf: "^5.0.0"

然后运行pub install。
接下来,导入dart-sprintf:
import 'package:sprintf/sprintf.dart';
实施例编号

import 'package:sprintf/sprintf.dart';

void main() {
     double seconds = 5.0;
       String name = 'Dilki';
       List<String> pets = ['Cats', 'Dogs'];

       String sentence1 = sprintf('Sends %2.2f seconds ago.', [seconds]);
       String sentence2 = sprintf('Harry likes %s, I think %s likes %s.', [pets[0], name, pets[1]]);

       print(sentence1);
       print(sentence2);
}

输出
Sends 5.00 seconds ago.
Harry likes Cats, I think Dilki likes Dogs.
来源:https://pub.dartlang.org/packages/sprintf

xytpbqjk

xytpbqjk3#

如果你想要类似于Android(Today is %1$ and tomorrow is %2$)的字符串插值,你可以创建一个顶级函数,或者一个可以做类似事情的扩展。在这个例子中,我保持它类似于Android字符串,因为我目前正在移植一个Android应用程序(插值格式以1而不是0开始)

顶层功能

String interpolate(String string, List<String> params) {

  String result = string;
  for (int i = 1; i < params.length + 1; i++) {
    result = result.replaceAll('%${i}\$', params[i-1]);
  }

  return result;
}

然后你可以调用interpolate(STRING_TO_INTERPOLATE, LIST_OF_STRINGS),你的字符串将被插值。

扩展名

您可以创建一个扩展函数,它执行类似于Android String.format()的操作

extension StringExtension on String {
    String format(List<String> params) => interpolate(this, params);
}

这将允许您调用text.format(placeHolders)

测试

几个测试证明浓度:-

test('String.format extension works', () {
    // Given
    const String text = 'Today is %1\$ and tomorrow is %2\$';
    final List<String> placeHolders = List<String>()..add('Monday')..add('Tuesday');
    const String expected = 'Today is Monday and tomorrow is Tuesday';

    // When
    final String actual = text.format(placeHolders);

    // Then
    expect(actual, expected);
  });
qvsjd97n

qvsjd97n4#

如前所述,我还使用了sprintf包,但沿着使用了String类的方便扩展。
因此,在将包依赖项sprintf: "^4.0.0"添加到pubspecs.yaml中的依赖项列表后,创建一个新的Dart文件,其中包含Spring类的扩展,并提供如下格式方法:

extension StringFormatExtension on String {
  String format(var arguments) => sprintf(this, arguments);
}

导入包含StringFormatExtension扩展名的dart文件后,您可以键入以下内容:

String myFormattedString = 'Hello %s!'.format('world');

感觉就像在Java(我来自哪里)。

nuypyhwy

nuypyhwy5#

我用的是老式的方法

String url = "https://server.com/users/:id:/view";
print(url.replaceAll(":id:", "69");
w7t8yxp5

w7t8yxp56#

你也可以有这样简单的东西:

  • 用途
interpolate('Hello {#}{#}, cool {#}',['world','!','?']);
// Hello world!, cool ?
  • 功能
static const needleRegex = r'{#}';
  static const needle = '{#}';
  static final RegExp exp = new RegExp(needleRegex);

  static String interpolate(String string, List l) {
    Iterable<RegExpMatch> matches = exp.allMatches(string);

    assert(l.length == matches.length);

    var i = -1;
    return string.replaceAllMapped(exp, (match) {
      print(match.group(0));
      i = i + 1;
      return '${l[i]}';
    });
  }
7lrncoxx

7lrncoxx7#

现在有一个包,它的工作方式非常类似于Python的format函数。
https://pub.dev/packages/format
我认为通常更好的解决方案是@Günter Zöchbauer提出的,但像format这样的包确实有它的位置。我发现,当我希望在一些变量可能发生变化的情况下获得大多数预先录制的错误消息时,它最有帮助。
下面是一个使用示例:

import 'package:format/format.dart';

// Base of string defined BEFORE the "seconds" variable which can be created and subbed in later
const String MESSAGE = 'Send {seconds} seconds ago';

// Define "seconds"
int seconds = 1234;

// Sub in the value of "seconds".  Prints "Send 1234 seconds ago"
print(MESSAGE.format({'seconds': seconds});

接受的答案不允许已经创建的字符串有一个变量,format包比其他使用replaceAll或其他等价物的答案更干净。

相关问题