About 1,418,326 results (1,696 milliseconds)

Universe - how to "find" a character > char(127) from SELECT using ...

https://groups.google.com/g/mvdbms/c/f9A03aBqqo4
A Multi-Value database for the masses, not the classes. ... You can use the ASCII function to find the ASCII code for the special character you want to search for ...

Functions in the standard libraries

https://groups.google.com/g/tlaplus/c/PGdTDv-UGds/m/iApz2F0QAQAJ
I was looking for functions to get the ASCII value of characters but realized I couldn't. find a list of all functions available. Should I look for a ...

How to convert string to char or how to get ASCII-Code from a string

https://groups.google.com/g/borland.public.delphi.objectpascal/c/lgnXlEy_5wY
Jun 12, 2000 ... 1. str[1] returns the first character (as type Char) from the string. 2. Ord( a ) returns the ASCII value of the character a. 3. IntToStr( x ) ...

Ascii char to Decimal value Conversion

https://groups.google.com/g/comp.sys.tandem/c/YaJguKK1jNY
Jan 11, 2022 ... MOVE DISPLAY-NUMERIC TO BINARY-VALUE. The above would only work if INPUT-TEXT contained 5 digit characters -- no leading, trailing, or embedded ...

String functions | BigQuery | Google Cloud

https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions
Gets the ASCII code for the first character or byte in a STRING or BYTES value. ... Gets the number of characters in a STRING value. Return type. INT64.

Ran into an "uncleanable" character in Google Sheets. This is a bug ...

https://support.google.com/docs/thread/51299987/ran-into-an-uncleanable-character-in-google-sheets-this-is-a-bug?hl=en
Jun 4, 2020 ... The first printable ASCII character being code(32), which is a space. ... get rid of non-printing Unicode characters: Sometimes text values ...

How to get ascii value of a character?

https://groups.google.com/g/comp.lang.tcl/c/x1s_eTm720w
May 15, 1996 ... you would have to convert that number then. ... :s <URL:http://www.teraform.com/%7Elvirden/> <*> O- "We are all Kosh." ... :s be construed as ...

Getting 'extended ascii' codes in haxe using Neko target?

https://groups.google.com/g/haxelang/c/5lkS473G33M
Mar 25, 2017 ... So I'm 'simulating' text mode, by using the ibm code page 437 (ascii characters) as an image, and then using a tilemap to make a fake text ...

CHAR - Google Docs Editors Help

https://support.google.com/docs/answer/3094120?hl=en
CODE : Returns the numeric Unicode map value of the first character in the string provided. ... DOLLAR. 9 of 43. EXACT. 10 of 43. FIND function. 11 of 43. FINDB.

Importing Page Break (code/ASCII?)

https://groups.google.com/g/microsoft.public.word.pagelayout/c/-7hiUKxhP3U
If your merge source contains a (decimal) ASCII 12 character and you can manage to get that character into the result of your merge field, you will get a ...

Converting ASCII characters - Google Docs Editors Community

https://support.google.com/docs/thread/136966193/converting-ascii-characters?hl=en
Nov 24, 2021 ... I tried to make it generic, to find any digits, and to combone them ... I'm seeing all instances replaced with the CHAR() value of the first code.

Make a Hex Cue

https://groups.google.com/g/qlab/c/T_2lb9rPiO8
Oct 4, 2017 ... Just comment out the "display dialog" line of code that ... \0nnn the character whose ASCII code is NNN (octal). NNN can be 0 to ...

How find the hex code of composed key

https://groups.google.com/g/vim_use/c/l4shL1yN1Ss
Mar 24, 2010 ... (char) - type whatever character you want (e.g. ctrl-i) <ESC> - exit insert mode ga - get ASCII value [ :help ga ]. For ctrl-i for example ...

Search for unicode character

https://groups.google.com/g/bbedit/c/gh7oEmJ8YHg
I insert the screen shot of the error code. I was hoping for a direct solution, like for example U+308 directly in the find dialogue of BBEdit. Best greetings ...

Question about BLE extension reading a value

https://groups.google.com/g/mitappinventortest/c/g7Q5CdT0DhE
Mar 22, 2017 ... I have tried to use the string method, with the weird characters for ASCII values below 32 in another situation, but I couldn't get it to work ...

using regex for special characters

https://groups.google.com/g/mongodb-user/c/L9Bo2xUIY5U/m/WgahdS18BwAJ
Need help on trying to find $regex query for finding special characters in element value. Example: I have Name column, the value comes out as "GAGN┬⌐". I would ...

constexpr ascii character checks

https://groups.google.com/a/isocpp.org/g/std-proposals/c/oLJhl4psmyI
You should simply convert to ASCII and work on a char. char16_t and char32_t only get the exemption because the code is exactly the same.

Using grep to find non-ASCII text

https://groups.google.com/g/comp.unix.programmer/c/Auge3Bz4iCA
Oct 3, 2014 ... > Windows-1251 (a.k.a. code page CP1251) is a popular 8-bit character > encoding, designed to cover languages that use the Cyrillic script ...

One figure in a Google Sheet is not being added to the total sum at ...

https://support.google.com/docs/thread/185921664/one-figure-in-a-google-sheet-is-not-being-added-to-the-total-sum-at-the-end-of-the-row?hl=en
Oct 27, 2022 ... I can replace your formulas with a new formula that will sum the values regardless if the ASCII character 160 exsists or not. Let me know if ...

Excluding values with numbers

https://groups.google.com/g/comp.databases.oracle.misc/c/L_-0o2TkW3Q
Dec 29, 2009 ... * Obtain the second character in the column: SUBSTR(HOMEWORK,2,1) * Use the ASCII function to find the ASCII value of the second character