The Java processing string containing double quotes itself

Source: Internet
Author: User

Environment: Notpad + + 6.0 + JDK 6.0.31

Problem: Java processing string containing double quotes itself

Solve:

Use the transfer character.

Example code:

[Java]View PlainCopy
  1. Public class test{
  2. public static void Main (string[] args) {
  3. String str1 = "\" name\ ""; Double quotes on both sides of the string
  4. String str2 = "name \" Is\ "WGB"; The middle of the string contains double quotes
  5. String STR3 = "\\name"; You can also use escape characters to make a string contain other characters
  6. System.out.println ("string One:" + str1);
  7. System.out.println ("string two:" + str2);
  8. System.out.println ("string three:" + STR3);
  9. }
  10. }


Operating effect:

New Java Video: www.makeru.com.cn/?t=12

The Java processing string containing double quotes itself

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.