How to match regular expressions with Chinese comments in the code?

(?: ^ |\ n |\ r)\ s *\ /\ * [\ s\ S] *?\ *\ /\ s * (?:\ r |\ n | $)
single-line comments. Regular matching of multiple-line comments is fine, but how to match regular expressions in Chinese (excluding all English) in comments?
is similar to comments like this:
/ *

  • event type
  • 1 subscribe follow
  • 2 unsubscribe access
  • 3 SCAN (user has followed) scan code
  • 4 LOCATION report Geographic location
  • 5 CLICK Click menu pull message
  • 6 VIEW Click menu Jump connection

* /

Mar.02,2021

[\ s\ S] is a Chinese matching


Click to view the matching result

the rules are as follows:

\/\*+(?=[\s\S]*[\u4e00-\u9fa5])[\s\S]+?\*\/
Menu