Does anybody know how to find pattern like ^.^ in Kettle (for example, ^44^, ^!^)?
'.' represents any letters which can be single or multiple.
I found this pattern, >.< (for example, >44!<) through (.*)(>.*<)(.*)
So I applied same way as (.*)(^.*^)(.*). But it never finds it.
Actually I do not know the meaning of (.*) exactly also, if anybody knows about it, could you give some advice?