Skip to content
Snippets Groups Projects
Commit cf50099e authored by Роман Штейнберг's avatar Роман Штейнберг Committed by Artem Konenko
Browse files

REF: regex parsing

parent e1af5150
No related merge requests found
let doubleNumReg = /.*_(\d+)_(\d+)$/;
let singleNumReg = /\w_(\d+)$/;
class Base { class Base {
static parseID($this) {
singleNumReg.lastIndex = 0;
return +singleNumReg.exec($this.attr('id'))[1];
}
static parsePosition($this) { static parsePosition($this) {
let doubleNumReg = /[A-Za-z_]+(\d+)[A-Za-z_]+(\d+)/; doubleNumReg.lastIndex = 0;
return doubleNumReg.exec($this.attr('id')).splice(1, 2); return doubleNumReg.exec($this.attr('id')).splice(1, 2);
} }
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment