Skip to content

Instantly share code, notes, and snippets.

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

  • Save inilim/635109db1a23ed065f77c99feeb49531 to your computer and use it in GitHub Desktop.

Select an option

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