Skip to content

Instantly share code, notes, and snippets.

@inilim
Created June 3, 2026 13:23
Show Gist options
  • Select an option

  • Save inilim/5eabc959ea25c2ae9b8f5a692b285dc9 to your computer and use it in GitHub Desktop.

Select an option

Save inilim/5eabc959ea25c2ae9b8f5a692b285dc9 to your computer and use it in GitHub Desktop.
SQLite Studio custom function str_icontains()
const args = Array.from(arguments);
const text = String(args[0]).toLowerCase();
args.shift();
for (let arg of args) {
if(text.includes(String(arg).toLowerCase())){
return true;
}
}
return false;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment