ABAP檢查日期時間合法性的函式

2021-06-09 02:43:26 字數 609 閱讀 4837

可以使用abap中函式 'date_check_plausibility' 或'time_check_plausibility'檢查日期和時間值是否合法。

用法如下:

call function 'date_check_plausibility'

exporting

date                      = v_date

exceptions

plausibility_check_failed = 1

others                    = 2.

if sy-subrc ne 0. "如果返回非0,則日期不合法..

endif.  

call function 'time_check_plausibility'

exporting

time                      = v_time

exceptions

plausibility_check_failed = 1

others                    = 2.

if sy-subrc ne 0. "如果返回非0,則時間不合法..

endif.

JAVA日期合法性檢查

日期檢查 param pinput 要檢查的字串 return boolean 檢查結果 public static boolean isdate string pinput string regex d 02468 048 13579 26 0?1357 8 1 02 0?1 9 1 2 0 9 ...

檢查郵箱合法性

1 標準的c和c 都不支援正規表示式,但有一些函式庫可以輔助c c 程式設計師完成這一功能,其中最著名的當數philip hazel的perl compatible regular expression庫,許多linux發行版本都帶有這個函式庫。2 c c 中使用正規表示式一般分為三步 1 編譯正規...

檢查 URL 合法性

方法一 自己總結,親測可用 public static boolean checkurl string url 0 9 1 9 0 9 1 9 25 0 5 2 0 4 0 9 0 1 0 9 1 9 0 9 1 9 0 25 0 5 2 0 4 0 9 0 1 0 9 1 9 0 9 1 9 0 ...