Hi. How can I find the index of a substring which matches a regular expression on solaris10?
|
|
The goto options for me are bash, awk and perl. I'm not sure what you're trying to do, but any of the three would likely work well. For example:
|
||
|
|
|
|
Assuming that what you want is to find the location of the first match of a wildcard in a string using bash, the following bash function returns just that, or empty if the wildcard doesn't match:
function match_index()
{
local pattern=$1
local string=$2
local result=${string/${pattern}*/}
[ ${#result} = ${#string} ] || echo ${#result}
}
For example: $ echo $(match_index "a[0-9][0-9]" "This is a a123 test") 10 If you want to allow full-blown regular expressions instead of just wildcards, replace the "local result=" line with local result=$(echo "$string" | sed 's/'"$pattern"'.*$//') but then you're exposed to the usual shell quoting issues. |
||
|
|
|
|
You tagged the question as bash, so I'm going to assume you're asking how to do this in a bash script. Unfortunately, the built-in regular expression matching doesn't save string indices. However, if you're asking this in order to extract the match substring, you're in luck:
This snippet will output in turn all of the submatches. The first one (index 0) will be the entire match. You might like your
There are a lot of ways to deal with passing the variables in to awk. This combination of piping output and directly embedding one into the awk one-liner is fairly common. You can also give awk variable values with the Obviously you can modify this to get the length, the match string, whatever it is you need. You can capture multiple things into an array variable if necessary:
|
||
|
|
