O título é: "FRASE - REMOVENDO SUBSTRING",
Que poderia ser :
"CONVERTENDO STRING EM ARRAY DE CHAR"
Pois foi isto mesmo que eu fiz para lhe mostrar
como é fácil remover uma substring de uma string.
Este é um método fácil e seguro de se obter
uma substring sem nenhum método especial do java.
Copie este código agora mesmo, e coloque-o no seu
arsenal de códigos para estudos desta impressionante
linguagem de programação:
Veja abaixo imagens do programa em execução:
Veja abaixo o código do programa:
Que poderia ser :
"CONVERTENDO STRING EM ARRAY DE CHAR"
Pois foi isto mesmo que eu fiz para lhe mostrar
como é fácil remover uma substring de uma string.
Este é um método fácil e seguro de se obter
uma substring sem nenhum método especial do java.
Copie este código agora mesmo, e coloque-o no seu
arsenal de códigos para estudos desta impressionante
linguagem de programação:
Veja abaixo imagens do programa em execução:
Veja abaixo o código do programa:
import java.util.Scanner;
public class PROJETO {
public static int tam
= 100;
public static void main ( String args [ ] ) {
J jht = new J ( );
jht.textbackground ( jht.WHITE );
jht.Moldura ( ( short ) 1, ( short ) 24, ( short ) 2, ( short ) 68 );
jht.title ( " " );
String conv = "";
char [ ] str = new char [ tam ];
int i, n, n_1, lenv;
jht.textcolor ( jht.LIGHTRED );
jht.gotoxy ( ( int ) 22, ( int ) 3 );
System.out.printf ( "FRASE -
REMOVENDO SUBSTRING" );
jht.textcolor ( jht.LIGHTBLUE );
jht.gotoxy ( ( int ) 10, ( int ) 5 );
System.out.printf ( "Digite uma
frase ==> " );
jht.textcolor ( jht.LIGHTRED );
Scanner dados = new Scanner ( System.in );
conv = dados.nextLine ( );
str = conv.toCharArray ( );
lenv = conv.length ( );
jht.textcolor ( jht.LIGHTBLUE );
jht.gotoxy ( ( int ) 10, ( int ) 7 );
System.out.printf ( "Frase
digitada ==> " );
jht.textcolor ( jht.LIGHTRED );
for ( i = 0; i < str.length; i++ ) {
System.out.print ( str [ i ] );
}
jht.getche ( );
/////////////////////////////////////////////////////
jht.textcolor ( jht.LIGHTBLUE );
jht.gotoxy ( ( int ) 10, ( int ) 9 );
System.out.printf ( "Digite um Número
ara iniciar a remoção ==> " );
Scanner sc = new Scanner ( System.in );
jht.textcolor ( jht.LIGHTRED );
n = sc.nextInt ( );
jht.textcolor ( jht.LIGHTBLUE );
jht.gotoxy ( ( int ) 10, ( int ) 11 );
System.out.printf ( "Digite outro
Número para finalizar a remoção ==> " );
Scanner s_c = new Scanner ( System.in );
jht.textcolor ( jht.LIGHTRED );
n_1 = s_c.nextInt ( );
jht.textcolor ( jht.LIGHTBLUE );
jht.gotoxy ( ( int ) 10, ( int ) 13 );
System.out.printf ( "Substring
removida ==> " );
jht.textcolor ( jht.LIGHTRED );
for ( i = n; i < n_1; i++ ) {
System.out.print ( str [ i ] );
}
jht.textcolor ( jht.LIGHTRED );
for ( i = n; i < n_1; i++ ) {
str [ i ] = '\0';
}
jht.textcolor ( jht.LIGHTBLUE );
jht.gotoxy ( ( int ) 10, ( int ) 15 );
System.out.printf ( "Resultado
==> " );
jht.textcolor ( jht.LIGHTRED );
for ( i = 0; i < str.length; i++ ) {
System.out.print ( str [ i ] );
}
/////////////////////////////////////////////////////
jht.textcolor ( jht.LIGHTBLUE );
jht.gotoxy ( ( int ) 20, ( int ) 17 );
jht.Sleep ( ( short ) 1800 );
System.out.printf ( "Por: " );
jht.textcolor ( jht.LIGHTMAGENTA );
System.out.printf ( "Samuel Lima" );
jht.textcolor ( jht.BLACK );
jht.gotoxy ( ( int ) 20, ( int ) 18 );
System.out.printf ( "sa_sp10@hotmail.com" );
jht.Sleep ( ( short ) 1800 );
jht.textcolor ( jht.LIGHTRED );
jht.gotoxy ( ( int ) 29, ( int ) 22 );
System.out.printf ( "MUITO
OBRIGADO" );
jht.getche ( );
}
}
Nenhum comentário:
Postar um comentário
Observação: somente um membro deste blog pode postar um comentário.