summaryrefslogtreecommitdiff
path: root/lib/stdlib/doc/src/binary.xml
blob: 07f55ed30e328f2d227b52da59e2b219c43e27af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE erlref SYSTEM "erlref.dtd">

<erlref>
  <header>
    <copyright>
      <year>2009</year>
      <year>2023</year>
      <holder>Ericsson AB, All Rights Reserved</holder>
    </copyright>
    <legalnotice>
  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at
 
      http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.

  The Initial Developer of the Original Code is Ericsson AB.
    </legalnotice>

    <title>binary</title>
    <prepared>Patrik Nyblom</prepared>
    <responsible>Kenneth Lundin</responsible>
    <docno>1</docno>
    <approved></approved>
    <checked></checked>
    <date>2010-05-05</date>
    <rev>A</rev>
    <file>binary.xml</file>
  </header>
  <module since="OTP R14B">binary</module>
  <modulesummary>Library for handling binary data.</modulesummary>
  <description>

    <p>This module contains functions for manipulating byte-oriented
    binaries. Although the majority of functions could be provided
    using bit-syntax, the functions in this library are highly
    optimized and are expected to either execute faster or consume
    less memory, or both, than a counterpart written in pure Erlang.</p>

    <p>The module is provided according to Erlang Enhancement Proposal
      (EEP) 31.</p>

    <note>
      <p>The library handles byte-oriented data. For bitstrings that are not
      binaries (does not contain whole octets of bits) a <c>badarg</c>
      exception is thrown from any of the functions in this module.</p>
    </note>
  </description>

  <datatypes>
    <datatype>
      <name name="cp"/>
      <desc><p>Opaque data type representing a compiled
        search pattern. Guaranteed to be a <c>tuple()</c> to allow programs to
        distinguish it from non-precompiled search patterns.</p>
      </desc>
    </datatype>
    <datatype>
      <name name="part"/>
      <desc><p>A representation of a part (or range) in a binary. <c>Start</c> is
        a zero-based offset into a <c>binary()</c> and <c>Length</c> is the
        length of that part. As input to functions in this module, a reverse
        part specification is allowed, constructed with a negative
        <c>Length</c>, so that the part of the binary begins at <c>Start</c> +
        <c>Length</c> and is -<c>Length</c> long. This is useful for referencing
        the last <c>N</c> bytes of a binary as <c>{size(Binary), -N}</c>. The
        functions in this module always return <c>part()</c>s with positive
        <c>Length</c>.</p>
      </desc>
    </datatype>
  </datatypes>

  <funcs>
    <func>
    <name name="at" arity="2" since="OTP R14B"/>
      <fsummary>Return the byte at a specific position in a binary.</fsummary>
      <desc>
      <p>Returns the byte at position <c><anno>Pos</anno></c> (zero-based) in
      binary <c><anno>Subject</anno></c> as an integer. If
      <c><anno>Pos</anno></c> &gt;= <c>byte_size(<anno>Subject</anno>)</c>,
      a <c>badarg</c> exception is raised.</p>
      </desc>
    </func>

    <func>
      <name name="bin_to_list" arity="1" since="OTP R14B"/>
      <fsummary>Convert a binary to a list of integers.</fsummary>
      <desc>
      <p>Same as <c>bin_to_list(<anno>Subject</anno>, {0,byte_size(<anno>Subject</anno>)})</c>.</p>
      </desc>
    </func>

    <func>
      <name name="bin_to_list" arity="2" since="OTP R14B"/>
      <fsummary>Convert a binary to a list of integers.</fsummary>
      <desc>
      <p>Converts <c><anno>Subject</anno></c> to a list of <c>byte()</c>s, each
      representing the value of one byte. <c>part()</c> denotes which part of
      the <c>binary()</c> to convert.</p>

      <p><em>Example:</em></p>

<code>
1> binary:bin_to_list(&lt;&lt;"erlang"&gt;&gt;, {1,3}).
"rla"
%% or [114,108,97] in list notation.</code>

      <p>If <c><anno>PosLen</anno></c> in any way references outside the binary,
      a <c>badarg</c> exception is raised.</p>
      </desc>
    </func>

    <func>
      <name name="bin_to_list" arity="3" since="OTP R14B"/>
      <fsummary>Convert a binary to a list of integers.</fsummary>
      <desc>
      <p>Same as<c> bin_to_list(<anno>Subject</anno>, {<anno>Pos</anno>, <anno>Len</anno>})</c>.</p>
      </desc>
    </func>

    <func>
      <name name="compile_pattern" arity="1" since="OTP R14B"/>
      <fsummary>Precompile a binary search pattern.</fsummary>
      <desc>
      <p>Builds an internal structure representing a compilation of a
      search pattern, later to be used in functions
      <seemfa marker="#match/3"><c>match/3</c></seemfa>,
      <seemfa marker="#matches/3"><c>matches/3</c></seemfa>,
      <seemfa marker="#split/3"><c>split/3</c></seemfa>, or
      <seemfa marker="#replace/4"><c>replace/4</c></seemfa>.
      The <c>cp()</c> returned is guaranteed to be a
      <c>tuple()</c> to allow programs to distinguish it from
      non-precompiled search patterns.</p>

      <p>When a list of binaries is specified, it denotes a set of
      alternative binaries to search for. For example, if
      <c>[&lt;&lt;"functional"&gt;&gt;,&lt;&lt;"programming"&gt;&gt;]</c>
      is specified as <c><anno>Pattern</anno></c>, this
      means either <c>&lt;&lt;"functional"&gt;&gt;</c> or
      <c>&lt;&lt;"programming"&gt;&gt;</c>". The pattern is a set of
      alternatives; when only a single binary is specified, the set has
      only one element. The order of alternatives in a pattern is
      not significant.</p>

      <p>The list of binaries used for search alternatives must be flat and
      proper.</p>

      <p>If <c><anno>Pattern</anno></c> is not a binary or a flat proper list of
      binaries with length &gt; 0, a <c>badarg</c> exception is raised.</p>
      </desc>
    </func>

    <func>
      <name name="copy" arity="1" since="OTP R14B"/>
      <fsummary>Create a duplicate of a binary.</fsummary>
      <desc>
      <p>Same as <c>copy(<anno>Subject</anno>, 1)</c>.</p>
      </desc>
    </func>

    <func>
      <name name="copy" arity="2" since="OTP R14B"/>
      <fsummary>Duplicate a binary <c>N</c> times and create a new.</fsummary>
      <desc>
      <p>Creates a binary with the content of <c><anno>Subject</anno></c>
      duplicated <c><anno>N</anno></c> times.</p>

      <p>This function always creates a new binary, even if <c><anno>N</anno> =
      1</c>. By using <seemfa marker="#copy/1"><c>copy/1</c></seemfa>
      on a binary referencing a larger binary, one
      can free up the larger binary for garbage collection.</p>

      <note>
      <p>By deliberately copying a single binary to avoid referencing
      a larger binary, one can, instead of freeing up the larger
      binary for later garbage collection, create much more binary
      data than needed. Sharing binary data is usually good. Only in
      special cases, when small parts reference large binaries and the
      large binaries are no longer used in any process, deliberate
      copying can be a good idea.</p>
      </note>

      <p>If <c><anno>N</anno></c> &lt; <c>0</c>, a <c>badarg</c> exception is
      raised.</p>
      </desc>
    </func>

    <func>
      <name name="decode_unsigned" arity="1" since="OTP R14B"/>
      <fsummary>Decode a whole binary into an integer of arbitrary size.
      </fsummary>
      <desc>
      <p>Same as <c>decode_unsigned(<anno>Subject</anno>, big)</c>.</p>
      </desc>
    </func>

    <func>
      <name name="decode_unsigned" arity="2" since="OTP R14B"/>
      <fsummary>Decode a whole binary into an integer of arbitrary size.
      </fsummary>
      <desc>
      <p>Converts the binary digit representation, in big endian or little
      endian, of a positive integer in <c><anno>Subject</anno></c> to an Erlang
      <c>integer()</c>.</p>

      <p><em>Example:</em></p>

      <code>
1> binary:decode_unsigned(&lt;&lt;169,138,199&gt;&gt;,big).
11111111</code>
      </desc>
    </func>

    <func>
      <name name="encode_unsigned" arity="1" since="OTP R14B"/>
      <fsummary>Encode an unsigned integer into the minimal binary.</fsummary>
      <desc>
      <p>Same as <c>encode_unsigned(<anno>Unsigned</anno>, big)</c>.</p>
      </desc>
    </func>

    <func>
      <name name="encode_unsigned" arity="2" since="OTP R14B"/>
      <fsummary>Encode an unsigned integer into the minimal binary.</fsummary>
      <desc>
      <p>Converts a positive integer to the smallest possible
      representation in a binary digit representation, either big endian
      or little endian.</p>

      <p><em>Example:</em></p>

      <code>
1> binary:encode_unsigned(11111111, big).
&lt;&lt;169,138,199&gt;&gt;</code>
      </desc>
    </func>

    <func>
      <name name="encode_hex" arity="1" since="OTP 24.0"/>
      <name name="encode_hex" arity="2" since="OTP @OTP-18354@"/>
      <fsummary>Encodes a binary into a hex encoded binary with specified case</fsummary>
      <desc>
        <p>Encodes a binary into a hex encoded binary using the specified case for the hexadecimal digits "a" to "f".</p>
        <p>The default case is <c>uppercase</c>.</p>
        <p><em>Example:</em></p>

        <code>
1> binary:encode_hex(&lt;&lt;"f"&gt;&gt;).
&lt;&lt;"66"&gt;&gt;
2> binary:encode_hex(&lt;&lt;"/"&gt;&gt;).
&lt;&lt;"2F"&gt;&gt;
3> binary:encode_hex(&lt;&lt;"/"&gt;&gt;, lowercase).
&lt;&lt;"2f"&gt;&gt;
4> binary:encode_hex(&lt;&lt;"/"&gt;&gt;, uppercase).
&lt;&lt;"2F"&gt;&gt;
        </code>
      </desc>
    </func>

    <func>
      <name name="decode_hex" arity="1" since="OTP 24.0"/>
      <fsummary>Decodes a hex encoded binary into a binary.</fsummary>
      <desc>
      <p>Decodes a hex encoded binary into a binary.</p>

      <p><em>Example</em></p>

      <code>
1> binary:decode_hex(&lt;&lt;"66"&gt;&gt;).
&lt;&lt;"f"&gt;&gt;</code>
      </desc>
    </func>

    <func>
      <name name="first" arity="1" since="OTP R14B"/>
      <fsummary>Return the first byte of a binary.</fsummary>
      <desc>
      <p>Returns the first byte of binary <c><anno>Subject</anno></c> as an
      integer. If the size of <c><anno>Subject</anno></c> is zero, a
      <c>badarg</c> exception is raised.</p>
      </desc>
    </func>

    <func>
      <name name="last" arity="1" since="OTP R14B"/>
      <fsummary>Return the last byte of a binary.</fsummary>
      <desc>
      <p>Returns the last byte of binary <c><anno>Subject</anno></c> as an
      integer. If the size of <c><anno>Subject</anno></c> is zero, a
      <c>badarg</c> exception is raised.</p>
      </desc>
    </func>

    <func>
      <name name="list_to_bin" arity="1" since="OTP R14B"/>
      <fsummary>Convert a list of integers and binaries to a binary.</fsummary>
      <desc>
      <p>Works exactly as
      <seemfa marker="erts:erlang#list_to_binary/1"><c>erlang:list_to_binary/1</c></seemfa>,
      added for completeness.</p>
      </desc>
    </func>

    <func>
      <name name="longest_common_prefix" arity="1" since="OTP R14B"/>
      <fsummary>Return length of longest common prefix for a set of binaries.
      </fsummary>
      <desc>
      <p>Returns the length of the longest common prefix of the
      binaries in list <c><anno>Binaries</anno></c>.</p>

      <p><em>Example:</em></p>

<code>
1> binary:longest_common_prefix([&lt;&lt;"erlang"&gt;&gt;, &lt;&lt;"ergonomy"&gt;&gt;]).
2
2> binary:longest_common_prefix([&lt;&lt;"erlang"&gt;&gt;, &lt;&lt;"perl"&gt;&gt;]).
0</code>

      <p>If <c><anno>Binaries</anno></c> is not a flat list of binaries, a
      <c>badarg</c> exception is raised.</p>
      </desc>
    </func>

    <func>
      <name name="longest_common_suffix" arity="1" since="OTP R14B"/>
      <fsummary>Return length of longest common suffix for a set of binaries.
      </fsummary>
      <desc>
      <p>Returns the length of the longest common suffix of the
      binaries in list <c><anno>Binaries</anno></c>.</p>

      <p><em>Example:</em></p>

<code>
1> binary:longest_common_suffix([&lt;&lt;"erlang"&gt;&gt;, &lt;&lt;"fang"&gt;&gt;]).
3
2> binary:longest_common_suffix([&lt;&lt;"erlang"&gt;&gt;, &lt;&lt;"perl"&gt;&gt;]).
0</code>

      <p>If <c>Binaries</c> is not a flat list of binaries, a <c>badarg</c>
      exception is raised.</p>
      </desc>
    </func>

    <func>
      <name name="match" arity="2" since="OTP R14B"/>
      <fsummary>Search for the first match of a pattern in a binary.</fsummary>
      <desc>
      <p>Same as <c>match(<anno>Subject</anno>, <anno>Pattern</anno>, [])</c>.
      </p>
      </desc>
    </func>

    <func>
      <name name="match" arity="3" since="OTP R14B"/>
      <fsummary>Search for the first match of a pattern in a binary.</fsummary>
      <type name="part"/>
      <desc>
      <p>Searches for the first occurrence of <c><anno>Pattern</anno></c> in
      <c><anno>Subject</anno></c> and returns the position and length.</p>

      <p>The function returns <c>{Pos, Length}</c> for the binary
      in <c><anno>Pattern</anno></c>, starting at the lowest position in
      <c><anno>Subject</anno></c>.</p>

      <p><em>Example:</em></p>

<code>
1> binary:match(&lt;&lt;"abcde"&gt;&gt;, [&lt;&lt;"bcde"&gt;&gt;, &lt;&lt;"cd"&gt;&gt;],[]).
{1,4}</code>

      <p>Even though <c>&lt;&lt;"cd"&gt;&gt;</c> ends before
      <c>&lt;&lt;"bcde"&gt;&gt;</c>, <c>&lt;&lt;"bcde"&gt;&gt;</c>
      begins first and is therefore the first match. If two
      overlapping matches begin at the same position, the longest is
      returned.</p>

      <p>Summary of the options:</p>

      <taglist>
      <tag>{scope, {<anno>Start</anno>, <anno>Length</anno>}}</tag>
      <item><p>Only the specified part is searched. Return values still have
      offsets from the beginning of <c><anno>Subject</anno></c>. A negative
      <c>Length</c> is allowed as described in section Data Types in this
      manual.</p></item>
      </taglist>

      <p>If none of the strings in <c><anno>Pattern</anno></c> is found, the
      atom <c>nomatch</c> is returned.</p>

      <p>For a description of <c><anno>Pattern</anno></c>, see function
      <seemfa marker="#compile_pattern/1"><c>compile_pattern/1</c></seemfa>.
      </p>

      <p>If <c>{scope, {Start,Length}}</c> is specified in the options such
      that <c>Start</c> &gt; size of <c>Subject</c>, <c>Start</c> +
      <c>Length</c> &lt; 0 or <c>Start</c> + <c>Length</c> &gt; size of
      <c>Subject</c>, a <c>badarg</c> exception is raised.</p>
      </desc>
    </func>

    <func>
      <name name="matches" arity="2" since="OTP R14B"/>
      <fsummary>Search for all matches of a pattern in a binary.</fsummary>
      <desc>
      <p>Same as <c>matches(<anno>Subject</anno>, <anno>Pattern</anno>, [])</c>.
      </p>
      </desc>
    </func>

    <func>
      <name name="matches" arity="3" since="OTP R14B"/>
      <fsummary>Search for all matches of a pattern in a binary.</fsummary>
      <type name="part"/>
      <desc>
      <p>As <seemfa marker="#match/2"><c>match/2</c></seemfa>,
      but <c><anno>Subject</anno></c> is searched until
      exhausted and a list of all non-overlapping parts matching
      <c><anno>Pattern</anno></c> is returned (in order).</p>

      <p>The first and longest match is preferred to a shorter,
      which is illustrated by the following example:</p>

<code>
1> binary:matches(&lt;&lt;"abcde"&gt;&gt;,
                  [&lt;&lt;"bcde"&gt;&gt;,&lt;&lt;"bc"&gt;&gt;,&lt;&lt;"de"&gt;&gt;],[]).
[{1,4}]</code>

       <p>The result shows that &lt;&lt;"bcde"&gt;&gt; is selected instead of
       the shorter match &lt;&lt;"bc"&gt;&gt; (which would have given raise to
       one more match, &lt;&lt;"de"&gt;&gt;).
       This corresponds to the behavior of
       POSIX regular expressions (and programs like awk), but is not
       consistent with alternative matches in <c>re</c> (and Perl), where
       instead lexical ordering in the search pattern selects which
       string matches.</p>

       <p>If none of the strings in a pattern is found, an empty list is
       returned.</p>

       <p>For a description of <c><anno>Pattern</anno></c>, see
       <seemfa marker="#compile_pattern/1"><c>compile_pattern/1</c></seemfa>.
       For a description of available options, see
       <seemfa marker="#match/3"><c>match/3</c></seemfa>.</p>

       <p>If <c>{scope, {<anno>Start</anno>,<anno>Length</anno>}}</c> is
       specified in the options such that <c><anno>Start</anno></c> &gt; size
       of <c><anno>Subject</anno></c>, <c><anno>Start</anno> +
       <anno>Length</anno></c> &lt; 0 or <c><anno>Start</anno> +
       <anno>Length</anno></c> is &gt; size of <c><anno>Subject</anno></c>,
       a <c>badarg</c> exception is raised.</p>
     </desc>
    </func>

    <func>
      <name name="part" arity="2" since="OTP R14B"/>
      <fsummary>Extract a part of a binary.</fsummary>
      <desc>
      <p>Extracts the part of binary <c><anno>Subject</anno></c> described by
      <c><anno>PosLen</anno></c>.</p>

      <p>A negative length can be used to extract bytes at the end of a
      binary:</p>

<code>
1> Bin = &lt;&lt;1,2,3,4,5,6,7,8,9,10&gt;&gt;.
2> binary:part(Bin, {byte_size(Bin), -5}).
&lt;&lt;6,7,8,9,10&gt;&gt;</code>

      <note>
      <p><seemfa marker="#part/2">part/2</seemfa> and
      <seemfa marker="#part/3">part/3</seemfa> are also available in the
      <seeerl marker="erts:erlang"><c>erlang</c></seeerl>
      module under the names <c>binary_part/2</c> and
      <c>binary_part/3</c>. Those BIFs are allowed in guard tests.</p>
      </note>

      <p>If <c><anno>PosLen</anno></c> in any way references outside the binary,
      a <c>badarg</c> exception is raised.</p>
      </desc>
    </func>

    <func>
      <name name="part" arity="3" since="OTP R14B"/>
      <fsummary>Extract a part of a binary.</fsummary>
      <desc>
      <p>Same as <c>part(<anno>Subject</anno>, {<anno>Pos</anno>,
      <anno>Len</anno>})</c>.</p>
      </desc>
    </func>

    <func>
      <name name="referenced_byte_size" arity="1" since="OTP R14B"/>
      <fsummary>Determine the size of the binary pointed out by a subbinary.
      </fsummary>
      <desc>
      <p>If a binary references a larger binary (often described as
      being a subbinary), it can be useful to get the size of the
      referenced binary. This function can be used in a program to trigger the
      use of <seemfa marker="#copy/1"><c>copy/1</c></seemfa>. By copying a
      binary, one can dereference the original, possibly large, binary that a
      smaller binary is a reference to.</p>

      <p><em>Example:</em></p>

      <code>
store(Binary, GBSet) ->
  NewBin =
      case binary:referenced_byte_size(Binary) of
          Large when Large > 2 * byte_size(Binary) ->
             binary:copy(Binary);
          _ ->
             Binary
      end,
  gb_sets:insert(NewBin,GBSet).</code>

      <p>In this example, we chose to copy the binary content before
      inserting it in <c>gb_sets:set()</c> if it references a binary more than
      twice the data size we want to keep. Of course,
      different rules apply when copying to different programs.</p>

      <p>Binary sharing occurs whenever binaries are taken apart.
      This is the fundamental reason why binaries are fast,
      decomposition can always be done with O(1) complexity. In rare
      circumstances this data sharing is however undesirable, why this
      function together with <c>copy/1</c> can be useful when optimizing
      for memory use.</p>

      <p>Example of binary sharing:</p>

      <code>
1> A = binary:copy(&lt;&lt;1&gt;&gt;, 100).
&lt;&lt;1,1,1,1,1 ...
2> byte_size(A).
100
3> binary:referenced_byte_size(A).
100
4> &lt;&lt;B:10/binary, C:90/binary&gt;&gt; = A.
&lt;&lt;1,1,1,1,1 ...
5> {byte_size(B), binary:referenced_byte_size(B)}.
{10,10}
6> {byte_size(C), binary:referenced_byte_size(C)}.
{90,100}</code>
      <p>In the above example, the small binary <c>B</c> was copied while the
      larger binary <c>C</c> references binary <c>A</c>.</p>
      <note>
      <p>Binary data is shared among processes. If another process
      still references the larger binary, copying the part this
      process uses only consumes more memory and does not free up the
      larger binary for garbage collection. Use this kind of intrusive
      functions with extreme care and only if a real problem is detected.</p>
      </note>
      </desc>
    </func>

    <func>
      <name name="replace" arity="3" since="OTP R14B"/>
      <fsummary>Replace bytes in a binary according to a pattern.</fsummary>
      <desc>
      <p>Same as <c>replace(<anno>Subject</anno>, <anno>Pattern</anno>, <anno>Replacement</anno>,[])</c>.</p>
      </desc>
    </func>

    <func>
      <name name="replace" arity="4" since="OTP R14B"/>
      <fsummary>Replace bytes in a binary according to a pattern.</fsummary>
      <type_desc variable="OnePos">An integer() =&lt; byte_size(<anno>Replacement</anno>)
      </type_desc>
      <desc>
      <p>Constructs a new binary by replacing the parts in
      <c><anno>Subject</anno></c> matching <c><anno>Pattern</anno></c> with
      the content of <c><anno>Replacement</anno></c>.</p>

      <p>If the matching subpart of <c><anno>Subject</anno></c> giving raise
      to the replacement is to be inserted in the result, option
      <c>{insert_replaced, <anno>InsPos</anno>}</c> inserts the matching part
      into <c><anno>Replacement</anno></c> at the specified position (or
      positions) before inserting <c><anno>Replacement</anno></c> into
      <c><anno>Subject</anno></c>.</p>

      <p><em>Example:</em></p>

<code>
1> binary:replace(&lt;&lt;"abcde"&gt;&gt;,&lt;&lt;"b"&gt;&gt;,&lt;&lt;"[]"&gt;&gt;, [{insert_replaced,1}]).
&lt;&lt;"a[b]cde"&gt;&gt;
2> binary:replace(&lt;&lt;"abcde"&gt;&gt;,[&lt;&lt;"b"&gt;&gt;,&lt;&lt;"d"&gt;&gt;],&lt;&lt;"[]"&gt;&gt;,[global,{insert_replaced,1}]).
&lt;&lt;"a[b]c[d]e"&gt;&gt;
3> binary:replace(&lt;&lt;"abcde"&gt;&gt;,[&lt;&lt;"b"&gt;&gt;,&lt;&lt;"d"&gt;&gt;],&lt;&lt;"[]"&gt;&gt;,[global,{insert_replaced,[1,1]}]).
&lt;&lt;"a[bb]c[dd]e"&gt;&gt;
4> binary:replace(&lt;&lt;"abcde"&gt;&gt;,[&lt;&lt;"b"&gt;&gt;,&lt;&lt;"d"&gt;&gt;],&lt;&lt;"[-]"&gt;&gt;,[global,{insert_replaced,[1,2]}]).
&lt;&lt;"a[b-b]c[d-d]e"&gt;&gt;</code>

        <p>If any position specified in <c><anno>InsPos</anno></c> &gt; size
        of the replacement binary, a <c>badarg</c> exception is raised.</p>

        <p>Options <c>global</c> and <c>{scope, part()}</c> work as for
        <seemfa marker="#split/3"><c>split/3</c></seemfa>.
        The return type is always a <c>binary()</c>.</p>

        <p>For a description of <c><anno>Pattern</anno></c>, see
        <seemfa marker="#compile_pattern/1"><c>compile_pattern/1</c></seemfa>.
        </p>
      </desc>
    </func>

    <func>
      <name name="split" arity="2" since="OTP R14B"/>
      <fsummary>Split a binary according to a pattern.</fsummary>
      <desc>
      <p>Same as <c>split(<anno>Subject</anno>, <anno>Pattern</anno>,
      [])</c>.</p>
      </desc>
    </func>

    <func>
      <name name="split" arity="3" since="OTP R14B"/>
      <fsummary>Split a binary according to a pattern.</fsummary>
      <desc>
      <p>Splits <c><anno>Subject</anno></c> into a list of binaries based on
      <c><anno>Pattern</anno></c>. If option <c>global</c> is not specified,
      only the first occurrence of <c><anno>Pattern</anno></c> in
      <c><anno>Subject</anno></c> gives rise to a split.</p>

      <p>The parts of <c><anno>Pattern</anno></c> found in
      <c><anno>Subject</anno></c> are not included in the result.</p>

      <p><em>Example:</em></p>

<code>
1> binary:split(&lt;&lt;1,255,4,0,0,0,2,3&gt;&gt;, [&lt;&lt;0,0,0&gt;&gt;,&lt;&lt;2&gt;&gt;],[]).
[&lt;&lt;1,255,4&gt;&gt;, &lt;&lt;2,3&gt;&gt;]
2> binary:split(&lt;&lt;0,1,0,0,4,255,255,9&gt;&gt;, [&lt;&lt;0,0&gt;&gt;, &lt;&lt;255,255&gt;&gt;],[global]).
[&lt;&lt;0,1&gt;&gt;,&lt;&lt;4&gt;&gt;,&lt;&lt;9&gt;&gt;]</code>

      <p>Summary of options:</p>

      <taglist>
      <tag>{scope, part()}</tag>
      <item><p>Works as in <seemfa marker="#match/3"><c>match/3</c></seemfa>
      and <seemfa marker="#matches/3"><c>matches/3</c></seemfa>. Notice that
      this only defines the scope of the search for matching strings,
      it does not cut the binary before splitting. The bytes before and after
      the scope are kept in the result. See the example below.</p></item>
      <tag>trim</tag>
      <item><p>Removes trailing empty parts of the result (as does <c>trim</c>
      in <seemfa marker="re#split/3"><c>re:split/3</c></seemfa>.</p></item>
      <tag>trim_all</tag>
      <item><p>Removes all empty parts of the result.</p></item>
      <tag>global</tag>
      <item><p>Repeats the split until <c><anno>Subject</anno></c> is
      exhausted. Conceptually option <c>global</c> makes split work
      on the positions returned by
      <seemfa marker="#matches/3"><c>matches/3</c></seemfa>, while it
      normally works on the position returned by
      <seemfa marker="#match/3"><c>match/3</c></seemfa>.</p></item>
      </taglist>

     <p>Example of the difference between a scope and taking the
     binary apart before splitting:</p>

<code>
1> binary:split(&lt;&lt;"banana"&gt;&gt;, [&lt;&lt;"a"&gt;&gt;],[{scope,{2,3}}]).
[&lt;&lt;"ban"&gt;&gt;,&lt;&lt;"na"&gt;&gt;]
2> binary:split(binary:part(&lt;&lt;"banana"&gt;&gt;,{2,3}), [&lt;&lt;"a"&gt;&gt;],[]).
[&lt;&lt;"n"&gt;&gt;,&lt;&lt;"n"&gt;&gt;]</code>

      <p>The return type is always a list of binaries that are all
      referencing <c><anno>Subject</anno></c>. This means that the data in
      <c><anno>Subject</anno></c> is not copied to new binaries, and that
      <c><anno>Subject</anno></c> cannot be garbage collected until the results
      of the split are no longer referenced.</p>

      <p>For a description of <c><anno>Pattern</anno></c>, see
      <seemfa marker="#compile_pattern/1"><c>compile_pattern/1</c></seemfa>.
      </p>
      </desc>
    </func>
  </funcs>
</erlref>