10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-10-02 14:30:58 +02:00
QUESTDB_website/js/mhchemCE.js
2020-11-24 18:21:58 +00:00

17 lines
282 B
JavaScript

class mhchemCE{
static extract(string) {
const m = string.match(mhchemCE.regEx)
if (m) {
return m[1]
} else {
return string
}
}
static test(string){
return mhchemCE.regEx.test(string)
}
static get regEx(){
return /^\\ce\{(.*)\}$/
}
}