For example, return the part of the string that is after the last x in axxxghdfx445 (should return 445).
x
axxxghdfx445
445
Regular Expression : /([^x]+)$/ #assuming x is not last element of the string.
/([^x]+)$/
#assuming x is not last element of the string.