首页 > 编程语言 >Java: Strings

Java: Strings

时间:2022-11-24 03:33:20浏览次数:53  
标签:Java String Outputs System println txt Strings out

String Methods:

String txt = "Hello World";
System.out.println(txt.toUpperCase());   // Outputs "HELLO WORLD"
System.out.println(txt.toLowerCase());   // Outputs "hello world"

 

String txt = "Please locate where 'locate' occurs!";
System.out.println(txt.indexOf("locate")); // Outputs 7

System.out.println(txt.indexOf("p")); // Outputs 0
System.out.println(txt.indexOf("l")); // Outputs 1

 

String firstName = "John ";
String lastName = "Doe";
System.out.println(firstName.concat(lastName));

 

String x = "10";
String y = "20";
String z = x + y;  // z will be 1020 (a String)

 

String x = "10";
int y = 20;
String z = x + y;  // z will be 1020 (a String)

 

Special Characters

Escape characterResultDescription
\' ' Single quote
\" " Double quote
\\ \ Backslash
 

 

 

 

CodeResult 
\n New Line

String txt = "Hello\nWorld!";
System.out.println(txt);

// Outputs 

Hello
World!

\r Carriage Return

String txt = "Hello\rWorld!";
System.out.println(txt);

// Outputs 

Hello
World!

\t Tab

String txt = "Hello\tWorld!";
System.out.println(txt);

// Outputs 

Hello    World!

\b Backspace

String txt = "Hel\blo World!";
System.out.println(txt);

// Outputs 

Helo World!

 

标签:Java,String,Outputs,System,println,txt,Strings,out
From: https://www.cnblogs.com/ShengLiu/p/16920692.html

相关文章

  • Java: Type Casting
    InJava,therearetwotypesofcasting:WideningCasting (automatically)-convertingasmallertypetoalargertypesizebyte -> short -> char -> int......
  • Java: Primitive and Non-Primitive Data Types
    Primitivetypesarepredefined(alreadydefined)inJava.Non-primitivetypesarecreatedbytheprogrammerandisnotdefinedbyJava(exceptfor String).N......
  • Java: Declare Multiple Variables
    ExampleInsteadofwriting:intx=5;inty=6;intz=50;System.out.println(x+y+z);Youcansimplywrite:intx=5,y=6,z=50;System.out.printl......
  • IDEA报错 java: 错误: 无效的源发行版:17
    报错如下图所示:这就是没设置好JDK版本,按照下图设置好即可。好的,齐活儿。......
  • 一次对Java异常机制的理解
    一次对Java异常机制的理解近期有一个对接三方接口的任务,在这个过程中用到了许多try-catch处理,发现自己对异常处理是一知半解,浅浅研究了一下,记录一下,也帮助小伙伴如何正......
  • JavaScript 面向对象(五)原型链
     5.原型链prototype原型'每一个构造函数都有一个属性叫做prototype,指向一个对象,'当这个构造函数被new的时候,它的每一个实例(即将生成的对象)的__proto__属性,也指向......
  • JavaScript 面向对象(番外)JS字面量
    javascript字面量在JavaScript里面,字面量包括:字符串字面量(stringliteral)、数组字面量(arrayliteral)和对象字面量(objectliteral),另外还有函数字面量(function......
  • JavaScript 面向对象(一)对象
    字面量’字面量表示如何表达这个值,一般除去表达式,给变量赋值时,等号右边都可以认为是字面量。字面量分为字符串字面量(stringliteral)、数组字面量(arrayliteral)和对......
  • JavaScript--href调用JS方法和href="#"与href="javascript:void(0)"
    关于href属性<a>标签的href属性用于指定超链接目标的URL。超链接的URL可能的值:绝对URL-指向另一个站点(比如href="http://www.example.com/index.htm")相......
  • JavaScript 面向对象 番外笔记
    小笔记JS输出空格解决方法:1、使用输出html标签 document.write("&nbsp;&nbsp;"+"1"+"&nbsp;&nbsp;&nbsp;&nbsp;"+"23");结果:1232、使用CSS样式document.w......