gpt4 book ai didi

java - 在 Java 中跳过 String.Contains 中的子字符串

转载 作者:行者123 更新时间:2023-12-05 08:45:11 24 4
gpt4 key购买 nike

对于给定的字符串

String name = "Test";
String welcomeMessage = "Welcome" + name + ", You have notification!";

我们如何通过转义 name 变量来检查 welcomeMessage 是否包含“Welcome, you have notification”子字符串,因为 name 变量不断变化?

我要实现

welcomeMessage.contains("Welcome, You have notification!"); //to return true

跳过名称变量的最佳方法是什么?

最佳答案

String#startsWithendsWith

String类提供了具体的方法:

例子:

boolean containsPhrases = 
message.startsWith( "Welcome" )
&&
message.endsWith( ", You have notification!" )
;

关于java - 在 Java 中跳过 String.Contains 中的子字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73653688/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com