Top "String-length" questions

String length most commonly refers to the number of characters contained within a string.

Go “panic: runtime error: index out of range” when the length of array is not null

I am having a hard time learning how to loop through a string in Go to do some stuff (specifically, …

arrays string go compiler-errors string-length
Reading a character string of unknown length

I have been tasked with writing a Fortran 95 program that will read character input from a file, and then (to …

input fortran character string-length fortran95
compute string length in Spark SQL DSL

Edit: this is an old question concerning Spark 1.2 I've been trying to compute on the fly the length of a …

apache-spark apache-spark-sql string-length
How to find the length of a numerical variable using PROC SQL

I have a dataset with a column of phone numbers. I want to filter this dataset using PROC SQL WHERE …

sql sas numerical string-length proc-sql
Len() function vs String.Length property; which to choose?

I'm making the transition from VB6 to VB.Net (VS 2010) and have a basic rather than expansive understanding of the …

vb.net string vb6-migration string-length
PHP: whats the total length of a post global variable?

I was wondering if anybody knows the total length that a post global could be. e.g: $_POST['formInput'] = "hello …

php post global-variables string-length
How to read input of unknown length using fgets

How am I supposed to read long input using fgets(), I don't quite get it. I wrote this #include <…

c string input string-length
Split string by length in Golang

Does anyone know how to split a string in Golang by length? For example to split "helloworld" after every 3 characters, …

string split go string-length
Finding field with longest length in a column

How do I find the field with the longest length of a specific column in a MySQL table?

mysql string-length
How to return elements from a list that have a certain length?

I'm trying to return words that have a specific length size. The words is a list and size is a …

python string list string-length