Is the term 'String' too jargony to use in a user interface?

Having worked as a software developer for a long time, I'm out of touch sometimes with whether a word would be considered jargon.

I am adding something to a user interface where a name is given, and a type. The type would be one of Number, Date, or 'String'. I'm just not sure if 'string' in the technical sense is a term that is in common usage, or if it is still considered jargon.

'Text' sounds mildly inappropriate to use, because that implies a length (to me at least), whereas this would be something short.

So, is there a better word I can use?


Solution 1:

String is probably still a bit "jargony" for many. Call it Text instead.

Solution 2:

Ooh! This is my field of expertise. =) Never use "string" to describe a series of characters, in any user interface element. The exception to this rule, is when the user is expected to be a developer (programmer, analyst, power user, etc.). If any, the user interface should use jargon with which the user is expected to be familiar. When using jargon in the user interface, it should not be so cryptic that a novice user is unable to easily interpret the meaning.

Describe what the string represents. The data type that must be provided should be enforced by the input capturing mechanism (text box, etc.), and/or inferred by the description. Use a date chooser for dates and a text box for names. Date choosers are important; because a date may be entered in various formats -- the date chooser returns a predefined format. If you are having trouble doing so, the user interface must be re-evaluated.

For example:

  • First Name (implies alpha characters)
  • Password (implies alphanumeric and common punctuation characters)
  • Message (implies alphanumeric and common punctuation characters)
  • Birth date (implies date format)
  • Hours worked (implies integral data)

The reason why "Number, Date, or 'String'" sounds correct, is because the meaning of string is contextual to anyone familiar with its correlation to "a series of characters." For everyone else in the world (likely 99.7% or so of world population), it means "a long piece of fiber".


Side note: Proper, modern software architecture, particularly MVP, MVC, and MVVM, accommodate interchangeable user interfaces. Using these architectures would allow the same application to have both a "technical" and "non-technical" interface. This is very useful, because the logic and data remain the same, and only a new user interface needs be built. Therefore, an application program could contain both expert and novice interfaces. This could be as simple as displaying definitions of jargon to novice users, and not to experts.

Solution 3:

We did some informal research on precisely this for the ConML modelling language, which is aimed at non experts in information technologies. We wanted a "string" data type but we didn't want to sound too techie. Our conclusion was to use Text as a data type name, and from our experience at teaching and using ConML, it is well received and understood.