Skip to main content

All Questions

Tagged with
Filter by
Sorted by
Tagged with
1 vote
2 answers
186 views

Parse string using character value for Unicode characters

I added the getCValue method to reduce the cyclomatic complexity, but the cyclomatic complexity still persists. How can I reduce it? Can I change this code using ...
stromboli's user avatar
2 votes
1 answer
375 views

Filtering user input to not contain a specific character

I need to filter an input from a user to never have the have the Pilcrow Sign (¶) character. The following methods filters the input from the user ...
user5950's user avatar
  • 123
5 votes
3 answers
979 views

Listing all the chars in a given UnicodeBlock

I want to visually inspect all the characters that Java thinks are in any given UnicodeBlock. The following method, as far as I can tell, does the task. But, it sure feels like awful design. ...
red shoe's user avatar
  • 167
12 votes
3 answers
4k views

Customised Java UTF-16

I have implemented customized encoding mechanism for javaUTF16. Does this implementation support all the characters? ...
srikanth's user avatar
  • 491