sap 判斷字串是否為數字

2021-06-09 06:25:50 字數 807 閱讀 2247

判斷字串是否為數字並輸出補零

fm:numeric_check

兩種輸出結果:numc 、char

l_saknr = i_fichero-linea+l_pos(10).

call function 'numeric_check'

exporting

string_in = l_saknr

importing

htype     = l_tipo.

if l_saknr > '0000000000' and l_saknr <= '9999999999'

and l_tipo = 'numc'.

v_saknr = l_saknr.

補獲系統異常方法:

report  zsdr014.

data:a type i,

b type 

c length 20,

error type 

ref 

to cx_root,

message 

type string.

b = '8.050'.

try .

a = b.

message 

'無異常情況' 

type 

'e'.

catch cx_sy_conversion_no_number into error.

message = error->get_longtext( ).

message 

message 

type 

'e'.

endtry.

shell 判斷字串是否為數字

bin bash 方法1 a 1234 echo a n sed n 0 9 0 9 p echo string a is numbers 第乙個 n 是shell的測試標誌,對後面的串 sed n 0 9 0 9 p 進行測試,如果非空,則結果為真。sed缺省會顯示所有輸入行資訊的,sed 的 n...

判斷輸入字串是否為數字

判斷輸入字串是否為數字 字串 public bool isnumeric string nvalue if i 0 不能在字串中間 else if iasc 46 else if iasc 48 iasc 57 return true 上面的方法,我覺得有些麻煩,如果用正規表示式一句就可以了,usi...

Python 判斷字串是否為數字

以下例項通過建立自定義函式is number 方法來判斷字串是否為數字 coding utf 8 filename test.py author by www.runoob.com defis number s try float s return true except valueerror pa...