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;
  } else if (isCode_AZ(code)) {
    return code + (CODE_a - CODE_A);
  }
  return null;
}