Posts

Showing posts with the label reversing string in java

Quantum Internet Benefits

Image
  The quantum internet is a network of quantum computers that are connected together using quantum communication. It has the potential to revolutionize many industries, including: Secure communications: The quantum internet would be inherently secure, as it would be impossible to eavesdrop on quantum communications without being detected. This could be used for applications such as secure financial transactions, government communications, and military applications. Quantum computing: The quantum internet would allow quantum computers to be connected together, which would allow them to solve problems that are currently impossible for classical computers. This could be used for applications such as drug discovery, financial modeling, artificial intelligence, and materials science. Quantum sensors: The quantum internet could be used to connect quantum sensors together, which would allow them to create a global network of sensors that could be used to monitor the environment, detect earthq

Java String Operations: Removing Extra Spaces, Removing Spacial characters and Numbers, Reversing the whole String, Reversing the each string values

Image
Program package com.java.api; import java.io.*; import java.util.*; public class NewJava { /** * reversing the whole string * @param Str * @return */ public String convertReverse(String Str) { String reverse=""; for(int i=Str.length()-1;i>=0;i--) { reverse=reverse+Str.charAt(i); } return reverse; } /**  * reversing each string   * @param Str  * @return  */ public String convertReverseEachString(String Str) { StringBuilder sb=new StringBuilder();  String spiltStr[]=Str.split(" "); for(int i=spiltStr.length-1;i>=0;i--) {  sb.append(spiltStr[i]+" "); } String reverse_Words= sb.toString(); return reverse_Words; } /** * removing extra white spaces * @param Str * @return */ public String removeExtraWhiteSpaces(String Str) { String removeSpaces=Str.replaceAll("\\s+", " "); return removeSpaces; }