04-27-2012, 05:05 PM
hello every one,
i'm kinda new to the regular expressions concept, and i've to create a regular expression for a dynamically generated string which has following format...
abc11_a_a_a11a1234_abcd_4ab5_a1ab_a1234b5c6d7e_AbcdefgHijklmnopqr12_AbcdefgHigklmnopqr12_ABCdef
i need help in two ways for this one.
i'm kinda new to the regular expressions concept, and i've to create a regular expression for a dynamically generated string which has following format...
abc11_a_a_a11a1234_abcd_4ab5_a1ab_a1234b5c6d7e_AbcdefgHijklmnopqr12_AbcdefgHigklmnopqr12_ABCdef
i need help in two ways for this one.
- 1: what could be the regular expression for this full string?
- 2: can i just create regular expression for this part (abc11_a_a_a11a1234_abcd_4ab5_a1ab_a1234b5c6d7e_) and just append the rest of the string as it is, would it still work, because only the part in () is dynamically generated, rest is pretty much static...