isPPT static method

bool isPPT(
  1. String s
)

Checks if string is an PPT file. 检查字符串是否为ppt文件

Implementation

static bool isPPT(String s) =>
    RegexUtils.hasMatch(s, RegexConstants.ppt);