Da traduttori professionisti, imprese, pagine web e archivi di traduzione disponibili gratuitamente al pubblico.
enter the expression you want to search for here. if'regular expression 'is unchecked, any non-space letters in your expression will be escaped with a backslash character. possible meta characters are:. - matches any character ^ - matches the beginning of a line $- matches the end of a line \\lt; - matches the beginning of a word \\gt; - matches the end of a word the following repetition operators exist:? - the preceding item is matched at most once * - the preceding item is matched zero or more times + - the preceding item is matched one or more times {n} - the preceding item is matched exactly n times {n,} - the preceding item is matched n or more times {, n} - the preceding item is matched at most n times {n, m} - the preceding item is matched at least n, but at most m times. furthermore, backreferences to bracketed subexpressions are available via the notation \\#. see the grep(1) documentation for the full documentation.
검색할 항목을 입력하십시오. 정규 표현식이 선택되어 있지 않다면 공백 문자가 아닌 모든 문자는 역슬래시 문자로 이스케이프됩니다. 사용 가능한 메타 문자는 다음과 같습니다:. - 임의의 문자와 일치 ^ - 줄의 시작과 일치 $- 줄의 끝과 일치\\ lt; - 단어의 시작과 일치\\ gt; - 단어의 끝과 일치 다음 반복 연산자를 사용할 수 있습니다:? - 이전 항목 한 번 이하 일치 * - 이전 항목 0번 이상 일치 + - 이전 항목 한 번 이상 일치 {n} - 이전 항목 정확히 n 번 일치 {n,} - 이전 항목 n 번 이상 일치 {, n} - 이전 항목 n 번 이하 일치 {n, m} - 이전 항목 n 번 이상 m 번 이하 일치 괄호로 둘러싼 부 표현에 대한 역참조는\\ # 을 사용하십시오. 자세한 사항은 grep( 1) 문서를 참고하십시오.