tryInt method

int tryInt()

문자를 정수로 변환

만약 변환할 수 없다면 0을 리턴.

Implementation

int tryInt() {
  return int.tryParse(this) ?? 0;
}