Home > awk, Technical > Find substring in string/Index of substring in string using awk

Find substring in string/Index of substring in string using awk

Syntax:
======
    index(string,substr)
if result of index(string,substr) is zero then substring is not found
else returns the left most position of the substring.

Example:
======
    index(“This is a string”,”is a”)

Output:
======
     6

Categories: awk, Technical
  1. No comments yet.
  1. No trackbacks yet.

Leave a comment