You need to sign in to do that
Don't have an account?
Walter@Adicio
need help with the regex to capture X in this string..."[ ref:X:ref ]"?
im trying something like this but i know its not correct.
string source = '[ ref:123456789:ref ]'; Pattern mypattern = Pattern.compile('[ ref:.*?:ref ]'); string x = mypattern.matcher( source ).replaceAll('');