character tag

4 questions


1 answers
101 views
0
What is the best way to repeat a string in Java?

Is there any other way to change the string to char[] by turning the repetitive statement instead of StringTokenizer?


1 answers
122 views
0
I want to replace characters in a specific index of a string.

To replace characters in a specific index in a string String myName = domanokz;myName.charAt(4) = 'x';I tried this way, but an error occurred. Is there another method?


1 answers
94 views
0
How does CharSequence change to String?

How does CharSequence change to String?

1 years ago

1 answers
135 views
0
Why is this code divided into several alphabetic ranges?

When I wrote in C, I only checked the value between 'A' and 'Z' when I checked the capital letters. inline int is_upper_alpha(char chValue){ return ((chValue >= 'A') && (chValue <= 'Z'))...

1 years ago

© 2024 OneMinuteCode. All rights reserved.