我想在 OpenEdge 中检查变量是否为帕斯卡大小写。
我找到了matches
运算符,我编写了以下代码:
define variable cVariable as character no-undo.
cVariable = "cPascalCase":U.
message cVariable matches 'c[A-Z]*':U.
但它不起作用,它显示“不”。有没有办法在 OpenEdge 中指定第二个字符应该是大写?还有更多,检查变量是否包含以大写开头的单词组?
提前致谢!