Skip to main content
Solved

At character to some lines

  • February 3, 2020
  • 2 replies
  • 8 views

remco

I need the following:

Every line has to have two numbers, the rest will be the same.

 

 

Is there a simple way to do this?

With kind regards Remco

Best answer by takashi

Alternatively, this conditional value setting could also work for you.

If @Value(input) Contains Regex ^\d\D*$
Then 0@Value(input)
Else @Value(input)
This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

2 replies

ebygomm
Influencer
Forum|alt.badge.img+44
  • Influencer
  • 3427 replies
  • February 3, 2020

You could use a string searcher to find attributes with two numbers (search for regex \\d{2} ), you could then add the 0 at the front for any non-matches


takashi
Celebrity
  • 7843 replies
  • Best Answer
  • February 3, 2020

Alternatively, this conditional value setting could also work for you.

If @Value(input) Contains Regex ^\d\D*$
Then 0@Value(input)
Else @Value(input)