SELECT `justfunctions.eu.stemmer_greek`("καλησπερα")
/*--Output--
ΚΑΛΗΣΠΕΡ
*/
CREATE OR REPLACE FUNCTION `your_project_id.your_dataset_id.stemmer_greek`(`string` string) RETURNS string
LANGUAGE js AS r'''return utils.greekStemmer(string.toUpperCase());''' OPTIONS ( description = '''Returns the stem of a <string>. Supports the Greek language.''' , library = [ "gs://justfunctions/bigquery-functions/stemmers.js" ] )
JavaScript User Defined Function (JavaScript UDF)
See something wrong? Contact us or report an issue on Github.