About 1,697,044 results (2,876 milliseconds)

String functions | BigQuery | Google Cloud

https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions
Formats a STRING as proper case, which means that the first character in each word is uppercase and all other characters are lowercase. INSTR, Finds the ...

Python Sorting | Python Education | Google for Developers

https://developers.google.com/edu/python/sorting
Jul 23, 2024 ... ... reverse=True), makes it sort backwards. strs ... Here is an example with strings, where each string is changed to upper case with '!!!

Python Strings | Python Education | Google for Developers

https://developers.google.com/edu/python/strings
Jul 23, 2024 ... A string literal can span multiple lines, but there must be a backslash \ at the end of each line to escape the newline. String literals inside ...

steve yegge - ruby-tour

https://sites.google.com/site/steveyegge2/ruby-tour
... words").each do |word|. words << word.chomp if word.downcase[0] == ?q. end. max ... for (String word : dictionary) {. if (word.toLowerCase().charAt(0) ...

filtering data based on link from other sheet - Google Docs Editors ...

https://support.google.com/docs/thread/102453827/filtering-data-based-on-link-from-other-sheet?hl=en
Mar 16, 2021 ... Each contact would have an "add notes" link or button which takes them to the notes sheet filter applied in reverse date order. From there I ...

Gensim word2vec on predefined dictionary and word-indices data

https://groups.google.com/g/gensim/c/dM4i72aPLnk
Mar 12, 2016 ... And even though the first thing it does to each example is to convert it to a list-of-indexes, the code (in either its pure-python or cython ...

String processing, for example

https://groups.google.com/g/comp.lang.forth/c/jw6yU_yI15E/m/s09E4zscDQAJ
Dec 24, 2021 ... > of expressiveness. Failed every time so far. SQL: SELECT COUNT(word) FROM words WHERE word LIKE '%a%'; I ...

How to correct reverse reading of google translate from Arabic to ...

https://support.google.com/translate/thread/23205206/how-to-correct-reverse-reading-of-google-translate-from-arabic-to-english?hl=en
Dec 18, 2019 ... If I copy from a PDF document (I am a researcher at university), the translation gets totally messed up because all words are read in reverse - ...

steve yegge - five-essential-phone-screen-questions

https://sites.google.com/site/steveyegge2/five-essential-phone-screen-questions
Example 1: Write a function to reverse a string. Example Java code: public static String reverse ( String s ) { ... each bit in a byte, short, or int/word value.

Python Regular Expressions | Python Education | Google for ...

https://developers.google.com/edu/python/regular-expressions
Jul 23, 2024 ... group() is the matching text (e.g. 'word:cat'). ... findall() finds *all* the matches and returns them as a list of strings, with each string ...

MapReduce: Simplified Data Processing on Large Clusters

https://research.google.com/archive/mapreduce-osdi04.pdf
currences of each word in a large collection of docu- ments. The user would write code similar to the follow- ing pseudo-code: map(String key, String value):.

03_exercises.ipynb - Colab

https://colab.research.google.com/github/BetoBob/NLTK-Book-Resource/blob/master/03/03_exercises.ipynb
Split silly into a list of strings, one per word, using Python's split() operation, and save this to a variable called bland . Extract the second letter of each ...

removing everything within square brackets (including these brackets)

https://groups.google.com/g/openrefine/c/LLPhT7GkdvU
Sep 1, 2022 ... Then, you can reverse the "split multi-valued cells" step by doing ... or the end of the first string of characters ?) Could you please ...

SIGMETRICS Tutorial: MapReduce

https://research.google.com/archive/papers/mapreduce-sigmetrics09-tutorial.pdf
Jun 19, 2009 ... map(String key, String value):. // key: document name,. // value: document contents for each word w in value: ... Support C++, Java, Python ...

String functions in GoogleSQL | Spanner | Google Cloud

https://cloud.google.com/spanner/docs/reference/standard-sql/string_functions
The following examples get the code points for each element in an array of words. SELECT 'foo' AS word, TO_CODE_POINTS('foo') AS code_points /*---------+ ...

Looker functions and operators | Google Cloud

https://cloud.google.com/looker/docs/functions-and-operators
String: Word- and letter-related functions; Dates: Date- and time-related ... each and every row. All mathematical operators, such as + , are applied ...

Clean Code Studio - heuristics

https://sites.google.com/view/cleancodestudio/algorithms/heuristics
Algorithm Heuristics (Rust) · : · This approach involves first reversing the entire string, and then reversing each individual word.

Best method to compare topic similarily across multiple models ...

https://groups.google.com/g/gensim/c/jvurU33uKh0
Sep 3, 2017 ... A corpus re-generated from the LDA topic models would look similar to the original corpus, except the words within each document would be ...

Search functions in GoogleSQL | Spanner | Google Cloud

https://cloud.google.com/spanner/docs/reference/standard-sql/search_functions
... words first, then n-grams are generated from the each word. language_tag : A named argument with a STRING value. The value contains an IETF BCP 47 language ...

SCE #Official - Python

https://sites.google.com/view/sceofficial/sem-iv/python
4) WAP to count occurrences of each word in given string. Solution. 5)WAP to ... Implement linear search and write another program to reverse a given string.