Skip to content

Instantly share code, notes, and snippets.

@ViRb3
Created July 22, 2017 22:15
Show Gist options
  • Save ViRb3/6711ada617eb03cfc2feb4f45a168da4 to your computer and use it in GitHub Desktop.
Save ViRb3/6711ada617eb03cfc2feb4f45a168da4 to your computer and use it in GitHub Desktop.
Convert to CStyle Array Kotlin
fun ConvertToCStyleArray(text: String): String {
var result = ""
var singleByte = ""
for(i in text)
{
singleByte += i
if(singleByte.length > 1) {
result += "\\x" + singleByte
singleByte = ""
}
}
return result
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment