2
I have a text file with the following content:
Name: Number: Password:
What I want to do is read this file and check if after : it has some character. Another question on the same subject: How can I check if the text of a file has the character :?
texto.contains(":")
?– Renan Gomes
Regular expression serves perfectly for this
– R.Santos