mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-04-04 17:56:59 +00:00
Use '?' for unprintable characters
This commit is contained in:
parent
c190ec5147
commit
2fef772f3d
@ -4,15 +4,19 @@ public class StringUtil
|
||||
{
|
||||
public static String normaliseLabel( String label )
|
||||
{
|
||||
StringBuilder builder = new StringBuilder();
|
||||
|
||||
for (int i = 0; i < label.length() && builder.length() < 32; i++)
|
||||
int length = Math.min( 32, label.length() );
|
||||
StringBuilder builder = new StringBuilder( length );
|
||||
for (int i = 0; i < length; i++)
|
||||
{
|
||||
char c = label.charAt( i );
|
||||
if( (c >= ' ' && c <= '~') || (c >= 161 && c <= 172) || (c >= 174 && c <= 255) )
|
||||
{
|
||||
builder.append( c );
|
||||
}
|
||||
else
|
||||
{
|
||||
builder.append( '?' );
|
||||
}
|
||||
}
|
||||
|
||||
return builder.toString();
|
||||
|
Loading…
x
Reference in New Issue
Block a user