在 PowerBuilder 中,可以使用 "string.Contains(string)" 函数来判断字符串 A 是否包含字符串 B。如果包含,函数返回 true;否则返回 false。
例如: string A = "Hello World"; string B = "World";
if (A.Contains(B)) { MessageBox("A 包含 B"); } else { MessageBox("A 不包含 B"); }
在 PowerBuilder 中,可以使用 "string.Contains(string)" 函数来判断字符串 A 是否包含字符串 B。如果包含,函数返回 true;否则返回 false。
例如: string A = "Hello World"; string B = "World";
if (A.Contains(B)) { MessageBox("A 包含 B"); } else { MessageBox("A 不包含 B"); }