Hi @ADITIJ49, since text to int direct conversion is not possible, I was wondering if you want only digits from your text and store it in a integer property? If yes, try using this:
@pxReplaceAllViaRegex(.YourProperty,“[^0-9]”,“”)
If you pass “2022012000012_AssetVal0000008” to the above RegEx you will get “20220120000120000008”.