Skip to main content

I need from the left part (attribute name) get the right part.

Abcd.EfgT.OpKTs ----> OpKTs

 

When using BulkAtributeRenamer with this Regex, result is the same:

Action: Regular Expression Replace

Text to Find: (^^A-Z]{0,}\\.)((A-Z]{0,}\\.)((A-Z]{0,})

String: \\3

The regex statement in the BulkAttributeRenamer is case sensitive, try

(^>A-Za-z]{0,}\.)(]A-Za-z]{0,}\.)(]A-Za-z]{0,})

In the above case, if I just wanted everything after the second full stop I'd use this to match the left part and replace with nothing

.*\.

 


Reply