toCode_tryAZ static method

int? toCode_tryAZ(
  1. int code
)

如果是字母,则转为大写A-Z,否则返回null

Implementation

static int? toCode_tryAZ(int code) {
  if (isCode_az(code)) {
    return code - (CODE_a - CODE_A);
  } else if (isCode_AZ(code)) {
    return code;
  }
  return null;
}