~ruther/qmk_firmware

ref: 7f63bcf38b55b3bf23c5606c2e1f8e15724f5984 qmk_firmware/lib/python/qmk/comment_remover.py -rw-r--r-- 538 bytes
7f63bcf3 — Joakim Tufvegren [Bug] Re-add call to `suspend_power_down_kb()` (#16382) 3 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""Removes C/C++ style comments from text.

Gratefully adapted from https://stackoverflow.com/a/241506
"""
import re

comment_pattern = re.compile(r'//.*?$|/\*.*?\*/|\'(?:\\.|[^\\\'])*\'|"(?:\\.|[^\\"])*"', re.DOTALL | re.MULTILINE)


def _comment_stripper(match):
    """Removes C/C++ style comments from a regex match.
    """
    s = match.group(0)
    return ' ' if s.startswith('/') else s


def comment_remover(text):
    """Remove C/C++ style comments from text.
    """
    return re.sub(comment_pattern, _comment_stripper, text)