Skip to content

Alphanumeric Scale

What It Does

The Alphanumeric Scale node generates combined letter-number identifiers (like A1, B2, C3) based on provided indices. It's useful for creating hierarchical naming systems with both alphabetic and numeric components.

Inputs

NameDescriptionTypeRequired
Letter IndexLetter index (0 = A, 1 = B, etc.)NumberYes
Number IndexNumber index (0 = 1, 1 = 2, etc.)NumberYes
UppercaseOutput letter in uppercase (true) or lowercase (false)BooleanNo
PrefixOptional text to add before the alphanumeric valueStringNo
SuffixOptional text to add after the alphanumeric valueStringNo

Outputs

NameDescriptionType
ValueThe generated alphanumeric value with optional prefix and suffixString

How to Use It

  1. Drag the Alphanumeric Scale node into your graph.
  2. Connect numbers to the "Letter Index" (for e.g., 0 for A) and "Number Index" inputs (for e.g., 0 for 1), or set them directly.
  3. Configure optional inputs like case preference and prefix/suffix text.
  4. The node will output a combined letter-number identifier (like "A1", "b2", etc.).

Tips

  • Letter indices are clamped to the English alphabet range (0-25).
  • Number indices automatically have 1 added (so index 0 produces "1").
  • Combine with Count nodes to generate sequential alphanumeric identifiers.

See Also

Use Cases

  • Grid Systems: Create cell identifiers for design grids (A1, A2, B1, B2).
  • Variant Naming: Organize component variants with hierarchical identifiers.
  • Section Numbering: Create section identifiers for design documentation.