第六章 File文件
第十九课 Wildcard通配符
1.One wildcard, the question mark(?), can stand for any single character in filename, an extension, or both.
一个通配符是问号(?),它能代表文件名、扩展名,或两者中的任意单个字符。
2.You can use the second wildcard, the asterisk (*), as part of a filename, an extension, or both, alone or in combination with other characters.
你可用第二个通配符星号(*)作为文件名、扩展名或两者的一个部分,单独用或与其他字符连用均可。
New Words & Terms
wildcard n. 通配符
question n. 问题
a ~ mark 问号
stand for 代表
any adj. 任何一个(些)的
single adj. 单个的
both adj. 两者(的)
asterisk n. 星号(=star)
alone adv. 单个地
combination n. 结合,组合
in ~ with... 与……组合
Exercises
1.以下带有通配符(?)的文件名是什么意思?你能写出几个可以代表的有效的文件名吗?
①? A? .DOC
②BOOKS.? OG
③? OME. DO?
2.以下带有通配符(*)的文件名是什么意思?你能写出几个可以代表的有效的文件名吗?
ME*
*.DOC
*ME.DOC
BOOKS.*
ME*.
*.*