UNPKG

@iwharris/dicom-data-dictionary

Version:

Dictionary of DICOM data elements, built directly from the published standard at dicom.nema.org

6 lines (5 loc) 197 B
export const getRegexMatches = (regex: RegExp, testString: string): string[] => { const result = regex.exec(testString) || []; result.shift(); // Remove first element return result; };