Skip to content

Instantly share code, notes, and snippets.

@chappjc
Created January 13, 2026 16:08
Show Gist options
  • Select an option

  • Save chappjc/035c8910c597601fdbbafd452a997ab7 to your computer and use it in GitHub Desktop.

Select an option

Save chappjc/035c8910c597601fdbbafd452a997ab7 to your computer and use it in GitHub Desktop.
ytt string slice
#@ uid_short = "abc123"
#@ uid_long = "verylonguid12345"
---
short_string_sliced: #@ uid_short[:8]
long_string_sliced: #@ uid_long[:8]
cluster_name_short: #@ "pais-{}".format(uid_short[:8])
cluster_name_long: #@ "pais-{}".format(uid_long[:8])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment