All pastes #331423 Raw Edit

Something

public javascript v1 · immutable
#331423 ·published 2007-01-28 21:45 UTC
rendered paste body
var strA = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";var strB = "abcdefghijklmnopqrstuvwxyz";var strC = "1234567890";var strD = "-_";var str = strA + strB + strC + strD;var qfr = '/' + 'a' + '/';var pattern = /a/;// would like to use it as var pattern = / variable /;// how would i do that;var result = str.match(pattern);for(i = 0; i < result.length; i++) {  return true;} else {  return false;}