Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
  • Show
Clear All
new posts

  • Replace String Variable

    Hi,

    I have a missing string variable:

    STRING YEAR
    1990


    How can I write a text "AAA" in the missing string variable?:

    STRING YEAR
    AAA 1990



    Thanks!


  • #2
    Code:
    replace STRING = "AAA" if STRING==""

    Comment

    Working...
    X