On 2011-12-20 11:02, Selcuk Yazar wrote:
[...] (by the way how can i sure my regex match my entry, are the usefull regex tool for check this.) i chenged my regex with dn.regex=".*,jvd=([^,]+),o=hosting,dc=myhosting,dc=example"
Quick'n'dirty: use perl:
perl -n -e 'print $1 if /.*,jvd=([^,]+),/'
hth,