mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-11-04 21:24:00 +01:00
17 lines
282 B
JavaScript
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\{(.*)\}$/
|
|
}
|
|
}
|