01.代码如下:
package TIANPAN; /** * 此处为文档注释 * * @author 田攀 微信382477247 */ public class TestDemo { public static void main(String args[]) { String str = "##@@hello**"; // 字符串对象 System.out.println(str.startsWith("##")); // 是否以“##”开头 System.out.println(str.startsWith("@@", 2)); // 从第2个索引开始是否以“@@”开头 System.out.println(str.endsWith("**")); // 是否以“**”结尾 } }
02.效果如下:
知识有价,如果您认为这篇文章有价值,认同作者的付出,可以微信二维码打赏任意金额给作者(微信号:382477247)哦,谢谢。
原文地址:https://www.cnblogs.com/tianpan2019/p/12331649.html
时间: 2024-10-29 13:04:39