Lines Matching refs:zs
339 let owner = matchstr( base, '^\zs.*\ze\..*\..*' )
340 let table = matchstr( base, '^\(.*\.\)\?\zs.*\ze\..*' )
341 let column = matchstr( base, '.*\.\zs.*' )
418 " let base = matchstr( base, '^\(.*\.\)\?\zs.*' )
715 let table_name = matchstr(a:table_name, '\%(.\{-}\.\)\?\zs\(.*\)' )
750 let table_alias = substitute(table_alias, '\w\zs\.\?\s*$', '.', '')
768 " \zs - start the match now
773 " let owner = matchstr( a:object, '^\s*\zs.*\ze\.' )
774 let owner = matchstr( a:object, '^\("\|\[\)\?\zs\.\{-}\ze\("\|\]\)\?\.' )
781 let owner = matchstr( a:table_name, '^\zs.*\ze\..*\..*' )
782 let table = matchstr( a:table_name, '^\(.*\.\)\?\zs.*\ze\..*' )
783 let column = matchstr( a:table_name, '.*\.\zs.*' )
879 " '\zs\(\(\<\w\+\>\)\.\)\?' - Get the owner name (optional)
887 " \ '\zs\(\("\|\[\)\?.\{-}\("\|\]\)\.\)\?'.
899 " '\zs\(\("\|\[\)\?\w\+\("\|\]\)\?\.\)\?' - Get the owner name (optional)
907 \ '\zs\(\("\|\[\)\?\w\+\("\|\]\)\?\.\)\?'.
920 … let table_name = matchstr( table_name_new, '^\zs\(.\{-}\.\)\?\(.\{-}\.\)\?.*\ze' )
922 " let table_name = matchstr( table_name_new, '^\(.*\.\)\?\zs.*\ze' )
923 … let table_name = matchstr( table_name_new, '^\(.\{-}\.\)\?\zs\(.\{-}\.\)\?.*\ze' )