Q&A

  • format에 관한 질문
숫자 1을 DB에 Insert 시킬때 '00001'로 넣으려고 하는데 어떻게 하면 될까요?
조언 좀 부탁 드립니다.
1  COMMENTS
  • Profile
    서기원 2004.07.13 05:06
    format을 도움말에서 찾아보시면
    d        Decimal. The argument must be an integer value. The value is converted to a string of decimal digits. If the format string contains a precision specifier, it indicates that the resulting string must contain at least the specified number of digits; if the value has less digits, the resulting string is left-padded with zeros.
    와 같이 나옵니다.

    format('%.5d',[1]);