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";
輸出:
相關用法
- Perl ord()用法及代碼示例
- Perl int()用法及代碼示例
- Perl uc()用法及代碼示例
- Perl exp用法及代碼示例
- Perl tell()用法及代碼示例
- Perl chr()用法及代碼示例
- Perl hex用法及代碼示例
- Perl sin()用法及代碼示例
- Perl oct()用法及代碼示例
- Perl log()用法及代碼示例
- Perl abs()用法及代碼示例
- Perl each()用法及代碼示例
- Perl cos()用法及代碼示例
- Perl atan2()用法及代碼示例
- Perl shift()用法及代碼示例
注:本文由純淨天空篩選整理自Code_Mech大神的英文原創作品 Perl | getc Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。