hi guys, is there a simple way to cut some positions out of each line,
like
abcde
bcdef
cdefg
to
cde
def
efg
hi guys, is there a simple way to cut some positions out of each line,
like
abcde
bcdef
cdefg
to
cde
def
efg
you can use Split (String) to separate every character, then a PeakSpread (Spreads) or BarSpread (Spreads) through a Not (Boolean) for a Select (String) to pick out only every 2nd, 3rd etc. to the last (omitting the first), and afterwards glue it back together using a + (String Spectral) .
Or take a look at RegExpr (String) ,which gives you some nice search or extract patterns. there you can get acces of 3 last characters of every slice for example.
thanks a lot guys, i tried RegExpr (String)
but iam to stupid to understand this logic,
its a simple thing but i didnt get it. If its not to cheeky
can anyone else look at the patch and try to fight it out.
i need
01.03.2004
to
01
03
2004
please!
RegExp_helpme!.v4p (7.9 kB)
I need
01.03.2004
if you want to split something like this you should go for Separate(String)
try:
(.+).(.+).(.+)
thanks… no text …