René's URL Explorer Experiment


Title: Java String

Open Graph Title: Java String

X Title: Java String

Description: A Java String is a sequence of characters which make up a textual code, name, sentence or whatever else you need to represent with characters. Java Strings are represented as arrays of characters internally in memory. This Java String tutorial explains how to work with Java Strings.

Open Graph Description: A Java String is a sequence of characters which make up a textual code, name, sentence or whatever else you need to represent with characters. Java Strings are represented as arrays of characters internally in memory. This Java String tutorial explains how to work with Java Strings.

X Description: A Java String is a sequence of characters which make up a textual code, name, sentence or whatever else you need to represent with characters. Java Strings are represented as arrays of characters internally in memory. This Java String tutorial explains how to work with Java Strings.

Keywords:

Opengraph URL: http://jenkov.com/tutorials/java/strings.html

X: @jjenkov

direct link

Domain: jenkov.com

HandheldFriendlyTrue
MobileOptimized480
authorJakob Jenkov
twitter:cardsummary_large_image
twitter:creator@jjenkov
twitter:domainjenkov.com
twitter:image:srchttp://tutorials.jenkov.com/images/java/java-language-teaser-500-300.png
og:typearticle
og:imagehttp://tutorials.jenkov.com/images/java/java-language-teaser-500-300.png
google-site-verificationi_TwzdElg-by5uXLvyAjuIaCjxo0yjtW8LdRPUDEEcw

Links:

https://jenkov.com/
Homehttps://jenkov.com/
RSShttps://jenkov.com/rss.xml
Java Tutorialhttps://jenkov.com/tutorials/java/index.html
What is Java?https://jenkov.com/tutorials/java/what-is-java.html
Installing the Java SDKhttps://jenkov.com/tutorials/java/installing-java-sdk.html
Your First Java Apphttps://jenkov.com/tutorials/java/your-first-java-app.html
Java Main Methodhttps://jenkov.com/tutorials/java/main-method.html
Java Project Overview, Compilation and Executionhttps://jenkov.com/tutorials/java/java-project-overview-compilation-and-execution.html
Java Core Conceptshttps://jenkov.com/tutorials/java/core-concepts.html
Java Syntaxhttps://jenkov.com/tutorials/java/syntax.html
Java Variableshttps://jenkov.com/tutorials/java/variables.html
Java Data Typeshttps://jenkov.com/tutorials/java/data-types.html
Java Math Operators and Math Classhttps://jenkov.com/tutorials/java/math-operators-and-math-class.html
Java Arrayshttps://jenkov.com/tutorials/java/arrays.html
Java Stringhttps://jenkov.com/tutorials/java/strings.html
Java Operationshttps://jenkov.com/tutorials/java/operations.html
Java if statementshttps://jenkov.com/tutorials/java/if.html
Java Ternary Operatorhttps://jenkov.com/tutorials/java/ternary-operator.html
Java switch Statementshttps://jenkov.com/tutorials/java/switch.html
Java instanceof operatorhttps://jenkov.com/tutorials/java/instanceof.html
Java for Loopshttps://jenkov.com/tutorials/java/for.html
Java while Loopshttps://jenkov.com/tutorials/java/while.html
Java Classeshttps://jenkov.com/tutorials/java/classes.html
Java Fieldshttps://jenkov.com/tutorials/java/fields.html
Java Methodshttps://jenkov.com/tutorials/java/methods.html
Java Constructorshttps://jenkov.com/tutorials/java/constructors.html
Java Packageshttps://jenkov.com/tutorials/java/packages.html
Java Access Modifiershttps://jenkov.com/tutorials/java/access-modifiers.html
Java Inheritancehttps://jenkov.com/tutorials/java/inheritance.html
Java Nested Classeshttps://jenkov.com/tutorials/java/nested-classes.html
Java Recordhttps://jenkov.com/tutorials/java/record.html
Java Abstract Classeshttps://jenkov.com/tutorials/java/abstract-classes.html
Java Interfaceshttps://jenkov.com/tutorials/java/interfaces.html
Java Interfaces vs. Abstract Classeshttps://jenkov.com/tutorials/java/interfaces-vs-abstract-classes.html
Java Enumshttps://jenkov.com/tutorials/java/enums.html
Java Annotationshttps://jenkov.com/tutorials/java/annotations.html
Java Lambda Expressionshttps://jenkov.com/tutorials/java/lambda-expressions.html
Java Moduleshttps://jenkov.com/tutorials/java/modules.html
Java Method Chaininghttps://jenkov.com/tutorials/java/method-chaining.html
Java Scoped Access or Access Scopinghttps://jenkov.com/tutorials/java/scoped-access-access-scoping.html
Java Exerciseshttps://jenkov.com/tutorials/java/exercises.html
Internal String Representationhttps://jenkov.com/tutorials/java/strings.html#internal-string-representation
Compact Stringshttps://jenkov.com/tutorials/java/strings.html#compact-strings
Creating a Stringhttps://jenkov.com/tutorials/java/strings.html#creating-a-string
Java String Literalshttps://jenkov.com/tutorials/java/strings.html#java-string-literals
Escape Charactershttps://jenkov.com/tutorials/java/strings.html#escape-characters
String Literals as Constants or Singletonshttps://jenkov.com/tutorials/java/strings.html#string-literals-as-constants-or-singletons
Java Text Blockshttps://jenkov.com/tutorials/java/strings.html#java-text-blocks
Java Text Block Indentationhttps://jenkov.com/tutorials/java/strings.html#java-text-block-indentation
Concatenating Stringshttps://jenkov.com/tutorials/java/strings.html#concatenating-strings
String Concatenation Performancehttps://jenkov.com/tutorials/java/strings.html#string-concatenation-performance
String Lengthhttps://jenkov.com/tutorials/java/strings.html#string-length
Substringshttps://jenkov.com/tutorials/java/strings.html#substring
Searching in Strings With indexOf()https://jenkov.com/tutorials/java/strings.html#indexof
Matching a String Against a Regular Expression With matches()https://jenkov.com/tutorials/java/strings.html#matches
Comparing Stringshttps://jenkov.com/tutorials/java/strings.html#comparing-strings
equals()https://jenkov.com/tutorials/java/strings.html#equals
equalsIgnoreCase()https://jenkov.com/tutorials/java/strings.html#equalsIgnoreCase
startsWith() and endsWith()https://jenkov.com/tutorials/java/strings.html#startswith-endswith
compareTo()https://jenkov.com/tutorials/java/strings.html#compareto
Trimming Strings With trim()https://jenkov.com/tutorials/java/strings.html#trimming-strings-with-trim
Replacing Characters in Strings With replace()https://jenkov.com/tutorials/java/strings.html#replacing-characters-in-strings-with-replace
replaceFirst()https://jenkov.com/tutorials/java/strings.html#replacefirst
replaceAll()https://jenkov.com/tutorials/java/strings.html#replaceall
Splitting Strings With split()https://jenkov.com/tutorials/java/strings.html#splitting-strings
Converting Numbers to Strings With valueOf()https://jenkov.com/tutorials/java/strings.html#converting-numbers-to-strings-with-valueof
Converting Objects to Stringshttps://jenkov.com/tutorials/java/strings.html#converting-objects-to-strings
Getting Characters and Byteshttps://jenkov.com/tutorials/java/strings.html#getting-characters-and-bytes
Converting to Uppercase and Lowercasehttps://jenkov.com/tutorials/java/strings.html#converting-to-uppercase-and-lowercase
String Formattinghttps://jenkov.com/tutorials/java/strings.html#string-formatting
Strip Indentationhttps://jenkov.com/tutorials/java/strings.html#strip-indentation
Translate Escape Codeshttps://jenkov.com/tutorials/java/strings.html#translate-escape-codes
Additional Methodshttps://jenkov.com/tutorials/java/strings.html#additional-methods
Java 9https://jenkov.com/java/index.html#new-in-java-9
Sortinghttps://jenkov.com/java-collections/sorting.html
Collatorhttps://jenkov.com/java-internationalization/collator.html
arrayhttps://jenkov.com/tutorials/java/arrays.html
Java regular expressionhttps://jenkov.com/java-regex/index.html
Java Text Blockshttps://jenkov.com/tutorials/java/strings.html#java-text-blocks
Java Operationshttps://jenkov.com/tutorials/java/operations.html
Tweethttps://twitter.com/intent/tweet?url=http://tutorials.jenkov.com/tutorials/java/strings.html&original_referer=jjenkov
https://www.youtube.com/watch?v=OGXAs9fZYTc&list=PLL8woMHwr36EDxjUoCzboZjedsnhLP1j4&index=28
https://www.youtube.com/watch?v=CKWw7J5MsyY&list=PLL8woMHwr36GYaIsv6STX864waOm61gMt&index=12
https://www.youtube.com/watch?v=aiwuJQt7YJU&list=PLL8woMHwr36EDxjUoCzboZjedsnhLP1j4&searchIndex=27
https://www.youtube.com/watch?v=Vw9ynzuGNSw&list=PLL8woMHwr36F-1h7BE92ynHHOE3zebGpA&searchIndex=1
https://www.youtube.com/watch?v=RrXZQLo1EOw&list=PLL8woMHwr36HWMaOTIiWNf_fYYkZCHPxo&searchIndex=5
https://www.youtube.com/watch?v=bj9DoZsu7Ls&list=PLL8woMHwr36HWMaOTIiWNf_fYYkZCHPxo&searchIndex=4
https://www.youtube.com/watch?v=x5Ruv5jotQk&list=PLL8woMHwr36HWMaOTIiWNf_fYYkZCHPxo&searchIndex=2
https://www.youtube.com/watch?v=wfQ_ZLttsPM&list=PLL8woMHwr36HWMaOTIiWNf_fYYkZCHPxo&searchIndex=13
https://www.youtube.com/watch?v=OHLSZf8DJpQ&list=PLL8woMHwr36EAeL4RIj4MAP27MXenwbDx&searchIndex=3
https://www.youtube.com/watch?v=N2sskKGnCqc&list=PLL8woMHwr36EDxjUoCzboZjedsnhLP1j4&searchIndex=17
https://www.youtube.com/watch?v=kirhhcFAGB4&list=PLL8woMHwr36EDxjUoCzboZjedsnhLP1j4&searchIndex=3
https://www.youtube.com/watch?v=mTGdtC9f4EU&list=PLL8woMHwr36EDxjUoCzboZjedsnhLP1j4&searchIndex=1

Viewport: width=device-width, height=device-height initial-scale=1, user-scalable=1


URLs of crawlers that visited me.