Guest User

Untitled

a guest
Oct 15th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. <cfscript>
  2.  
  3. strs = ['abcd1234${foo}32488uuu${bar}','${userID}'];
  4. regx = '.*\$\{(.+)\}.*';
  5.  
  6. for( str in strs ) {
  7. writeDump(rematch(regx, str));
  8. }
  9. abort;
  10. </cfscript>
Add Comment
Please, Sign In to add comment