设x="ABCdefg",则函数 Mid(Right(x,3),1,2) 的值为______.

问题描述:

设x="ABCdefg",则函数 Mid(Right(x,3),1,2) 的值为______.

=Right(x,3)=efg
Mid(“efg”,1,2)=ef

ef