Please I want to access a variable in regex js. I tried the regex constructor to no avail. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

Please I want to access a variable in regex js. I tried the regex constructor to no avail.

I was trying to recursively find a text in a DOM tree. It worked but I want the regex to accept the text parameter. More info can be found in the code for your perusal. https://code.sololearn.com/cQRitttxIB8B/?ref=app

10th Aug 2021, 3:24 AM
جوردن آهو ماولی
جوردن آهو ماولی - avatar
9 Answers
+ 2
to use text parameter as a regex expression, you need to use the regex constructor... but you also need to escape all characters wich have special meaning in a regex expression (ie: dot '.' brackets -- at least '([)]' but maybe '{}' -- escape char '\' and so on... perhaps all ASCII char except alphanumerics and space /[^\w ]/ could be a good safe choice -- that need to be tested)... in addition it would be more efficient to pass the regex expression instead of the text to the function to avoid building the regex at each function call (recursive iteration) ^^ https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp
10th Aug 2021, 6:57 AM
visph
visph - avatar
+ 1
visph hello. Please I'm stuck with this. Could you help me out?
10th Aug 2021, 3:25 AM
جوردن آهو ماولی
جوردن آهو ماولی - avatar
+ 1
visph thanks a million bro!!! 😀😀😀😀😀😀😀. Thanks ☺️ ☺️ ☺️ ☺️
10th Aug 2021, 8:41 AM
جوردن آهو ماولی
جوردن آهو ماولی - avatar
+ 1
visph bro, I tried the constructor and still it didn't work. It matched other stuff except for what I wanted.
10th Aug 2021, 8:48 AM
جوردن آهو ماولی
جوردن آهو ماولی - avatar
+ 1
visph i wrote it like this let pattern = new RegExp(text, "gi" ) ; if(node.nodeValue.match(pattern)) {...}
10th Aug 2021, 8:51 AM
جوردن آهو ماولی
جوردن آهو ماولی - avatar
+ 1
visph the constructor didn't work for the recursive function but for non-recursive cases, it worked
10th Aug 2021, 8:53 AM
جوردن آهو ماولی
جوردن آهو ماولی - avatar
+ 1
recursive function doesn't work because you pass the recursive function to the forEach method, while it expect a specific function signature... [...node.childNodes].forEach(findText) should be: [...node.childNodes].forEach(node => findText(node,text)) forEach callback signature expect as arguments: value, index, array... so your version get node index as text parameter ;P
10th Aug 2021, 10:18 AM
visph
visph - avatar
+ 1
visph aha I see. I thought the text parameter won't be needed when the node has children that's why I just passed the callback to it which obviously has the first parameter as the child node of the forEach. I'll try this 😁😁😁. Thank you.
10th Aug 2021, 4:00 PM
جوردن آهو ماولی
جوردن آهو ماولی - avatar
+ 1
visph It worked bro! 🤩🤩🤩🤩🤩🤩🤩🤩🤩🤩🤩. I'm super excited! Thanks so much 😁😁😁😁😁😁🤓🤓🤓🤓🎉🎉🎉🎉🎉
10th Aug 2021, 4:07 PM
جوردن آهو ماولی
جوردن آهو ماولی - avatar