标签: groovy
如何检查字符串是否以Groovy中的选项卡开头?
答案 0 :(得分:65)
这是一些方法......还有更多像正则表达式
def s = "\t" assert s[0] == "\t" assert s.startsWith("\t")