Jump to content

Talk:Comparison of programming languages (strings)

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by 156.67.104.28 (talk) at 17:36, 16 August 2020 (C++ also suports multiline strings!!!). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
WikiProject iconComputing List‑class
WikiProject iconThis article is within the scope of WikiProject Computing, a collaborative effort to improve the coverage of computers, computing, and information technology on Wikipedia. If you would like to participate, please visit the project page, where you can join the discussion and see a list of open tasks.
ListThis article has been rated as List-class on Wikipedia's content assessment scale.
???This article has not yet received a rating on the project's importance scale.

[Untitled]

The "String Literals" section "compares styles for declaring a string literal." Yet despite all the crazy forms listed there, there isn't anything on how to declare a "regular" string literal. --76.167.241.45 (talk) 08:25, 22 March 2009 (UTC)[reply]

Series TODO items ;; 20061030

  • DONE figure out how to turn the 'series banner' into a wp transclusion template
  • CANCEL (wp tables may be too cumbersome for new editors) convert the double-semicolon delimited records into pretty wp tables
  • add string functions from the (strings) article
  • add more article categories with more dimensions of comparison
  • take out the ___blank___ spots

What is a "regular" string?

This first item discussed (above) asks about "regular" strings. Being a programmer, I do not recognize an agreed upon definition for this concept. Can anyone expand that thought? Bcwilmot (talk) 00:42, 30 November 2010 (UTC)[reply]

C++ also suports multiline strings!!!

e.g:

const char* s1 = R"foo(
Hello
World
)foo";

Source: https://en.cppreference.com/w/cpp/language/string_literal

You are welcomen! — Preceding unsigned comment added by 156.67.104.28 (talk) 17:32, 16 August 2020 (UTC)[reply]