Rahul Pandit.
Published in : 2022-03-05

How can I split a given String into a pattern consisting of uppercase and lowercase alphabets in Java?

Javascript

Given a String S, I want to find a string containing one lowercase letter and one uppercase letter for the alphabet.

If S = "aAbBcdEec", I want to get "aAbB" and "Ee".

And if S = "abcABCadD", I want to get "abcABC" and "dD".

I've been thinking of StringBuilder or Pattern as a way to solve this, but to no avail.

I don't even need code to solve this, can you guys give me a hint?

Comments

Shilpa Date : 2022-03-05

Best answers

10

Best answers

10

You are looking answer for java, not javascript

Also, share your code or show your efforts!

Leave a comment

Join us

Join our community and get the chance to solve your code issues & share your opinion with us

Sign up Now

Related posts

Can I read a local json, image or text file from Javascript?
Publish date: 2022-03-03 | Comments: 1

Tag: Javascript

Javascript Add (+) issue
Publish date: 2022-02-26 | Comments: 1

Tag: Javascript

Help: How do I loop simple JSON objects to iterate all keys and values itself?
Publish date: 2022-03-06 | Comments: 1

Tag: Javascript

How to toggle ( show and hide ) divs according to day hours?
Publish date: 2022-02-13 | Comments: 1

Tag: Javascript

JavaScript variable for Changing CSS Height
Publish date: 2022-02-12 | Comments: 1

Tag: Javascript

How can I switch between two background-colors using js setinterval( )
Publish date: 2022-02-22 | Comments: 1

Tag: Javascript

javascript: Uncaught TypeError: undefined is not a function
Publish date: 2022-03-02 | Comments: 2

Tag: Javascript

Vanilla JavaScript Next & prev Navigation
Publish date: 2022-02-22 | Comments: 1

Tag: Javascript