perl substr

substr EXPR,OFFSET,LENGTH,REPLACEMENT
substr EXPR,OFFSET,LENGTH
substr EXPR,OFFSET
Extracts a substring out of EXPR and returns it. First character
is at offset zero. If OFFSET is negative, starts that far back
from the end of the string. If LENGTH is omitted, returns
everything through the end of the string. If LENGTH is negative,
leaves that many characters off the end of the string.

my s="Theblackcatclimbedthegreentree";mycolor = substr s, 4, 5;      # black                 mymiddle = substr s, 4, -11;    # black cat climbed the                 myend = substr s, 14;        # climbed the green tree                 mytail = substr s, -4;        # tree                 myz = substr $s, -4, 2; # tr

You can use the "substr" function as an lvalue, in which case EXPR
must itself be an lvalue. If you assign something shorter than
LENGTH, the string will shrink, and if you assign something longer
than LENGTH, the string will grow to accommodate it. To keep the
string the same length, you may need to pad or chop your value
using "sprintf".

If OFFSET and LENGTH specify a substring that is partly outside
the string, only the part within the string is returned. If the
substring is beyond either end of the string, "substr" returns the
undefined value and produces a warning. When used as an lvalue,
specifying a substring that is entirely outside the string raises
an exception. Here's an example showing the behavior for boundary
cases:

my name=fred;substr(name, 4) = 'dy'; # nameisnowfreddymynull = substr name, 6, 2;   # returns "" (no warning)                 myoops = substr name, 7;      # returns undef, with warning                 substr(name, 7) = 'gap'; # raises an exception

An alternative to using "substr" as an lvalue is to specify the
replacement string as the 4th argument. This allows you to replace
parts of the EXPR and return what was there before in one
operation, just as you can with "splice".

my s="Theblackcatclimbedthegreentree";myz = substr s, 14, 7, "jumped from";    # climbed                 #s is now "The black cat jumped from the green tree"

Note that the lvalue returned by the three-argument version of
"substr" acts as a 'magic bullet'; each time it is assigned to, it
remembers which part of the original string is being modified; for
example:

my x=1234;for(substr(x,1,2)) {
=a;printx,"\n"; # prints 1a4
=xyz;printx,"\n"; # prints 1xyz4
x=56789;_ = 'pq'; print $x,"\n"; # prints 5pq9
}

With negative offsets, it remembers its position from the end of
the string when the target string is modified:

my x=1234;for(substr(x, -3, 2)) {
=a;printx,"\n"; # prints 1a4, as above
x=abcdefg;print_,"\n"; # prints f
}

Prior to Perl version 5.10, the result of using an lvalue multiple
times was unspecified. Prior to 5.16, the result with negative
offsets was unspecified.

posted @   天使不设防  阅读(166)  评论(0编辑  收藏  举报
编辑推荐:
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· 单线程的Redis速度为什么快?
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 展开说说关于C#中ORM框架的用法!
点击右上角即可分享
微信分享提示