在 JFlex 中,可以使用 `(?i)` 来表示不区分大小写。例如,要匹配字符串 "hello",可以使用以下正则表达式: ``` (?i)hello ``` 这将匹配 "hello"、"Hello"、"HELLO" 等任何大小写组合的字符串。