Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Experts
I have to remove string after "."(dot) like "abcik.tarh". My output should come "abcik"
Kindly help for the same.
Regards
Nizam
Hi,
Use a simple regex for that.
Assuming the field name is fullname and the flow name is row43, here is an example:
row43.fullname.replaceAll("\\..*$", "")
Hope this helps.
Hi,
Use a simple regex for that.
Assuming the field name is fullname and the flow name is row43, here is an example:
row43.fullname.replaceAll("\\..*$", "")
Hope this helps.