Campbell Ritchie wrote:Where I am sitting, FA means something else and you wouldn&apost find it to work. Please avoid such abbreviations.
Jeanne Boyarsky wrote:Here's a link to the AWS Developer cert objectives.
I think it is too early to decide. You need to learn the basics about developing web apps and services for either path you mention.
Yes, you can do both.
Also, remember that for an entry level position, you don't need a specialty.
Tim Cooke wrote:The two are not directly comparable in the way I think you expect they are. JEE is a programming language and library, where AWS is a server environment. Your question is akin to asking "should I specialise in Software Engineering or Systems Engineering?" two very different career paths.
Perhaps I misinterpreted your question? Please correct me if I have.
Rob Spoor wrote:Side note: since $ matches the end of the string, $[.]+ will never match anything.
Campbell Ritchie wrote:
You can pass the entire line to a Scanner object, then you can get a Stream of matches from a regex. Look at this method. (Java9 only.) Use its return result's group() method to get a String, and the last line simply calls System.out.println():-