Python Find Nth Occurrence of Char in a StringIn Python, how would you find the Nth occurrence of a character (or substring) in a string? Yes, […] August 3, 2023 in Python tagged python / substring / nth / occurrence / locate / find / char / string by Mike
SQL Find Nth Occurrence of Char in a StringT-SQL’s CHARINDEX() function is useful for parsing out characters within a string. However, it only returns the first […] November 20, 2021 in SQL Server tagged character / char / string / parse / charindex / nth / occurrence by Mike
T-SQL Count Character OccurrencesDo you have a table in SQL Server that has a column with a string that has several […] November 16, 2021 in SQL Server tagged character / count / char / how / many / parts / occurrences / SQL Server Parsing by Mike
SQL Server String TypesThere are only four types of strings. However, there are two that exist currently in SQL Server but […] July 2, 2017 in SQL Server tagged nvarchar / char / varchar / nchar by Mike
SQL Server char and varchar Data TypesCHAR is a fixed-length, non-Unicode string data. n defines the string length and must be a non-fractional value […] February 24, 2017 in SQL Server tagged sql / T-SQL / strings / char / varchar by Mike