判断字符串是否包含指定片段。
string.contains(needle)
text = 'hello BT' result = text.contains('BT') // 输出:true print result