
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Concatenate String to an Int Value in Java
To concatenate a string to an int value, use the concatenation operator.
Here is our int.
int val = 3;
Now, to concatenate a string, you need to declare a string and use the + operator.
String str = "Demo" + val;
Let us now see another example.
Example
import java.util.Random; public class Demo { public static void main( String args[] ) { int val = 3; String str = "" + val; System.out.println(str + " = Rank "); } }
Output
3 = Rank
Advertisements