How to put that symbol in between?
-
Hello guys, hope you're all doing well.
I want to put the plus symbol "+" between digits or any certain value using Openbullet, is it possible or not, if yes then how?
Thanks in advance.
-
Where do you want to put the symbols ? Capture parse or other ? Try to use the function replace @test_it
-
@Why001 No I have a list of numbers and I want to add a plus "+" symbol between a certain amount of them.
For EX: 123456789 I want it to be like this → 123+456+789
-
Do you want that like this ?
i think there is a better way much faster and more optimized to make themLoli:
FUNCTION Constant "123456789" -> VAR "Number"
PARSE "<Number>" LR "" "456789" -> VAR "A"
PARSE "<Number>" LR "123" "789" -> VAR "B"
PARSE "<Number>" LR "123456" "" -> VAR "C"
FUNCTION Replace "<Number>" "<A>+<B>+<C>" "<Number>" -> VAR "Final"
-
@Why001 Not always after 3 numbers, maybe 2, 4, 5, 6 etc...
-
Yeah you can choice that with the replace you can choice the position of the +
-
@Why001 Not like that, the numbers are not under the order like you typed, each time they change from place to another.
For EX: 529013784, 0298563741, etc...
-
@test_it Humm okay I see and bro it is possible to you to parse the first number like 0123456789
and you have try to use recursive on the first number (0123456789) to see all numbers ?
-
@Why001 The numbers are constant from one line to another
-
This post is deleted!
-
Guys, how can I split a number into for parts
For EX: 123456123456 → 123 456 123 456
After that I will separate the 4 values with a plus "+" symbol in between instead of space.
-
Thanks to all, I've found the solution by my own using Substring FUNCTION.