Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Remove string after "."(dot) from string

Hi Experts

 

I have to remove string after "."(dot) like "abcik.tarh". My output should come "abcik"

Kindly help for the same.

 

 

Regards

Nizam

Labels (2)
1 Solution

Accepted Solutions
TRF
Champion II
Champion II

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.

View solution in original post

1 Reply
TRF
Champion II
Champion II

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.