关于Discord Bot活动

时间:2018-11-14 11:43:43

标签: java bots discord

if (messageSent.equalsIgnoreCase("is {0} my father")){
            event.getChannel().sendMessage("No! I am your father!").queue();

我想在此“ if”方法中为随机单词设置{0}项,因为它没有用。例如,如果有人发送“是我父亲吗”或其他字词,它将回答“不。我是你父亲!”。有什么解决办法吗?

这是下面的“ HelloEvent.java”类的代码图像:

Image here...

提前谢谢!

1 个答案:

答案 0 :(得分:0)

使用MessageFormat替换{0}。示例:

int planet = 7;
String event = "a disturbance in the Force";

String result = MessageFormat.format(
 "At {1,time} on {1,date}, there was {2} on planet {0,number,integer}.",
 planet, new Date(), event);