datas segmentstring db ?
datas ends
codes segment
assume
cs:codes,ds:
datas
start:
movax,datas
movds,ax
;**段
movah,01h
int 21h ;
輸入字元
movstring,al
;只能先把almov到變數string,再mov到dl。。不能直接mov dl,al
movdl, 0ah
movah,02h
int 21h ;
輸入回車換行
movdl,0dh
movah,02h
int21h
movdl,string
;把字元移到dl用02功能號輸出,沒有回車和換行的**可以直接mov dl,al
movah,02h
int21h
movax,4c00h
int21h
codes ends
end start
cout 輸出單個字元時
include using namespace std int main 輸出的是字元,並不是數字。include include using namespace std int main 上例中 substr是string的乙個方法是獲取從下標為6開始的十個字元。replace是string乙個方...
匹配單個字元
在上一小節中,了解到通過re模組能夠完成使用正規表示式來匹配字串 本小節,將要講解正規表示式的單字元匹配 字元功能 匹配任意1個字元 除了 n 匹配 中列舉的字元 d匹配數字,即0 9 d匹配非數字,即不是數字 s匹配空白,即 空格,tab鍵 s匹配非空白 w匹配單詞字元,即a z a z 0 9 ...
C語言實驗 單個字元輸入和輸出(順序結構)
新增鏈結描述 c語言實驗 單個字元輸入和輸出 順序結構 time limit 1000 ms memory limit 65536 kib submit statistic problem description 用getchar 從鍵盤上輸入乙個字元,用putchar 列印出來!input 從鍵盤...