Given this operation
"Math.floor(5.5) + floor(5.5)".replace(/b(?!Math.floor)(w+s*()/g, 'this.$1')
I get this result
"Math.this.floor(5.5) + this.floor(5.5)"
But what I need is this
"Math.floor(5.5) + this.floor(5.5)"
Given this operation
"Math.floor(5.5) + floor(5.5)".replace(/b(?!Math.floor)(w+s*()/g, 'this.$1')
I get this result
"Math.this.floor(5.5) + this.floor(5.5)"
But what I need is this
"Math.floor(5.5) + this.floor(5.5)"