Question
How to validate an e-mail that accepts all Latin characters?
By Latin characters I mean accented letters, ñ , ç , and all those used by languages such as Spanish, Portuguese, Italian ... Latin.
Context
The goal...
I would need to know how to read a character by keyboard in Java .
I know you can read a number, or a phrase, but this time I would like you to read just one character, and that the system displays a message, immediately after pressing that...
After seeing a certain code, I realized that they use this style:
aStr:=tblAcct.FieldByName('Name').Text;
It seems to work fine, but I had used it so far:
aStr:=tblAcct.FieldByName('Name').AsString;
I have used both when loading a TMem...
I have a preload or progress that I show before being redirected to another page.
What I want is that while it is loading to open another page, the div of the progress is increasing up to 100%, as well as a numerical value (n / 100).
I cur...
I am beginning to study the language rust and, as I usually do to compare with other languages, I want to implement the factorial calculation for large numbers (aka "BigInts" ).
I use the version rust 1.9.0 (stable) , which forces me to s...
I have to create a program that asks the user for natural numbers or 0 to finish and for each number that the user enters, the program must create a juggling sequence and display them on the screen.
In turn, when the program ends, you...
I am creating an application where each user has their respective profile. These profiles are stored in a ArrayList . I have problems when creating a method to find registered or present users in ArrayList and I have to do it with 2...
What I try to do is to leave a background shadow that goes from left to right. The background what it does is give it another background color, but instead of it appearing, it moves.
modify everything. Now I did this:
.Grupo {
transit...
Reading the MDN documentation where we talk about the primitive data Symbol for more that I read and reread I do not understand what would be a use case for that element more than to iterate Symbol.iterator .
The documentation sa...