From: Martin Pycko Date: Fri, 6 Jun 2003 19:47:59 +0000 (+0000) Subject: Add the variable LEN(STRING) to retrieve the length of the STRING X-Git-Tag: 0.5.0~418 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=731dccfccc853bc798a2f89600d52ec9d0ec85e8;p=thirdparty%2Fasterisk.git Add the variable LEN(STRING) to retrieve the length of the STRING git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1078 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/pbx.c b/pbx.c index e4041ccbf1..a0c58fad92 100755 --- a/pbx.c +++ b/pbx.c @@ -893,6 +893,17 @@ static void pbx_substitute_variables_temp(struct ast_channel *c,const char *var, } } } + if (!(*ret)) { + int len=strlen(var); + int len_len=strlen("LEN("); + if (len > (len_len+1) && !strncasecmp(var,"LEN(",len_len) && strchr(var+len_len+2,')')) { + char cp3[80]; + strncpy(cp3, var, sizeof(cp3) - 1); + cp3[len-len_len-1]='\0'; + sprintf(workspace,"%d",strlen(cp3)); + *ret = workspace; + } else ast_log(LOG_NOTICE, "Wrong use of LEN(VARIABLE)\n"); + } } }