當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Perl getc用法及代碼示例


Perl中的getc()函數用於從文件中讀取下一個字符,該文件的文件句柄作為參數傳遞給該文件。如果沒有傳遞FileHandle,則它將一個字符作為來自用戶的輸入。

用法: getc(FileHandle)

參數:
FileHandle:要讀取的文件


返回值:從文件讀取的字符或文件末尾的undef

示例1:

#!/usr/bin/perl  
    
# Opening a File in Read-only mode  
open(fh, "<", "File_to_be_read.txt");  
    
# Reading next character from the file 
$ch = getc(fh) 
  
# Printing the read character 
print"Character read from the file is $ch"; 
  
# Closing the File  
close(fh); 

輸出:

示例2:

#!/usr/bin/perl  
  
# Value to be entered by the user 
$ch = getc(STDIN); 
  
# Printing the entered value 
print"Value entered: $ch";

輸出:



相關用法


注:本文由純淨天空篩選整理自Code_Mech大神的英文原創作品 Perl | getc Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。