blob: 824a01edde65a81ba1c379efc2282d73b784c3f4 [file] [log] [blame]
/*
* Copyright (C) 2018 Square, Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package okio.samples
import okio.ByteString.Companion.encodeUtf8
import okio.utf8Size
import java.io.IOException
@Throws(IOException::class)
fun dumpStringData(s: String) {
println(" " + s)
println(" String.length: " + s.length)
println("String.codePointCount: " + s.codePointCount(0, s.length))
println(" Utf8.size: " + s.utf8Size())
println(" UTF-8 bytes: " + s.encodeUtf8().hex())
println()
}
fun main() {
dumpStringData("Café \uD83C\uDF69") // NFC: é is one code point.
dumpStringData("Café \uD83C\uDF69") // NFD: e is one code point, its accent is another.
}