About 1,979,444 results (4,717 milliseconds)

how to get char index in string with Elixir ?

https://groups.google.com/g/elixir-lang-talk/c/v7OvEaRo1s0
Jun 27, 2014 ... I wan to find char index in string , and I found Erlang have function. chr(String, Character) -> Index. I try call chr function in Elixir. iex ...

Last occurance of a character in a String

https://groups.google.com/g/elixir-lang-talk/c/PKVDr7rBKRI
May 29, 2013 ... I'm trying to find the last occurrence of a character in a String something like String.indexOf() but I can't seem to find a way to do it without splitting the ...

Is there a easy way to get a single unicode character from a string?

https://groups.google.com/g/golang-nuts/c/1bJ3UOTAydw
May 16, 2015 ... isn't this all because runes are 32bit so fixed length, whereas strings are utf8 which is variable length, so no way to 'index' to a character, ...

Proposal: String.index(string, substring)

https://groups.google.com/g/elixir-lang-core/c/S0yrDxlJCss/m/dP8_-T_hBgAJ
Feb 23, 2016 ... find/2 - present in Python and akin to Enum.find/2 although the latter does not return the index so a bit confusing. I would go with index/2 ...

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

https://groups.google.com/g/haxelang/c/5lkS473G33M
Mar 25, 2017 ... I had hoped that by scanning a string or a character, I could find ... // This will put a character from the character string to any position in ...

Buffer.write - Is there an efficient way to get the last index of the ...

https://groups.google.com/g/nodejs/c/h08EZJEv5S8/m/Af6UQHb7FgAJ
Jan 24, 2016 ... Be aware that the position could be in the middle of a character, so you'll have to deal with that. You can use Buffer.byteLength(thestring) == ...

Converting Type Characters to type string

https://groups.google.com/g/comp.lang.ada/c/A3wfYb0LeRQ
Mar 30, 2008 ... Get (C);. Index := Index + 1; Str (Index) := C;. At the end, Str (1 .. Index) contains all the characters entered by the user as a string.

Just started using Harbour and have encountered some issues...

https://groups.google.com/g/harbour-users/c/VxhBKnBmlF8/m/6DIH7HE_yt0J
Apr 22, 2013 ... ... check to make sure the strings are set. Any ideas ? Dang, I just ... index names to 10 char - which I find hard to read and maintain. I ...

MID - Google Docs Editors Help

https://support.google.com/docs/answer/3094129?hl=en
To return the contents of string beginning with a particular character or sub-string, use SEARCH to locate the index of the desired point. See Also.

Convert a "stopIndex" into line/charPositionInLine

https://groups.google.com/g/antlr-discussion/c/kYY2vpN1i84
If a token index, you can ask the token stream to get that token object then ask for line/charPos. Does this help? If it's a char index, I don't think we have a ...

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

https://groups.google.com/g/mvdbms/c/f9A03aBqqo4
CASE ACTION='C' ; * Convert control characters. DELIM.TYPE='' NEW.RECORD ... NEW.STRING:='^':FMT(ASC,'R%3') END ELSE HILIGHT.STRING:=HILIGHT.ON:CHAR(94): ...

Making `char` a consistently unsigned type in Chromium

https://groups.google.com/a/chromium.org/g/chromium-dev/c/sXlMD05Aa54/m/TaniNxbgAAAJ
... string (which forces unqualified char), and use it as an index. UTF-8 ... As someone who used to write a lot of string manipulation code in plain C ...

String functions | BigQuery | Google Cloud

https://cloud.google.com/bigquery/docs/reference/standard-sql/string_functions
The value 0 indicates an invalid position. When working on STRING types, the returned positions refer to character positions. All string comparisons are done ...

Find substring in cell array of numbers and strings

https://groups.google.com/g/comp.soft-sys.matlab/c/gpylYTARWv8
Jan 25, 2017 ... I have a cell array consisting of numbers, strings, and empty arrays. I want to find the position (linear or indexed) of all cells containing a string.

Getting index of char from end

https://groups.google.com/g/clojure/c/CRP26Dl1mwE
(defn indices-of "Returns the indices of the given char in the string (0 based)." [c string] (map second (filter #(= c (first %)) (partition 2 (interleave ...

How to find all instances of a text string, and sum the adjacent ...

https://support.google.com/docs/thread/302966799/how-to-find-all-instances-of-a-text-string-and-sum-the-adjacent-numbers?hl=en
Oct 20, 2024 ... ... (c,index(ifna(xmatch("?*",to_text(c),2,-1)))))),columns(d)),lambda(r,scan(,r,lambda(a,c,if(c="",a,c)))))),. unpivot_, lambda(data ...

Find position in an array (indexOf)?

https://groups.google.com/g/tasker/c/OGJYOAvbUdQ
Jun 28, 2013 ... It won't accept an array, but it will search through a string treating it like an array. A1: Variable Set [ Name:%array To:1,2,3,4,5 Do Maths: ...

loop and string split in stored procedure

https://groups.google.com/g/microsoft.public.sqlserver.programming/c/dPT2ty76m3I
Nov 15, 2001 ... however, you can use charindex() to locate a character position, substring(), left(), and or right() to extract the wanted info from a string. - ...

How to get a substring of a variable?

https://groups.google.com/g/terraform-tool/c/eOgxoJ4y-no
Nov 21, 2016 ... ... get a list of each individual character in a string. ... Oops, sorry, forgot a part. So split works, but then you want to access a specific index, ...

Warning/Error on (EXPECT|ASSERT)_EQ(char*, char*)

https://groups.google.com/a/chromium.org/g/cxx/c/cqWDz8CUnp0
Mar 17, 2022 ... This is usually unintentional when someone calls this test macro in google test on 2 c-string pointers. ... find if there are any other ...