


Hi community,
I tried using
.includes()
.indexOf()
.endsWith()
To check if string contains certain word in profile script but none of above is working in profile script..
Can anyone suggest alternative method to check if string contains particular word in profile script??
Thanks
Gauresh
Solved! Go to Solution.
Hi @gaureshk3014423 includes() works for me
What errors are you seeing? I have the following profile script saved and it was working last I checked.
var viewedPageGroup_pageGroupName = user.get('viewedPageGroup_pageNameGroup') || 0;
if (page.url.toLowerCase().indexOf('www.domain.com/page-name/') > -1) {
return true;
}
Hey @gaureshk3014423, how is it going on this issue? Were you able to get it working? Let us know!
Hi @gaureshk3014423 includes() works for me