Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Questions about INSTR
#2
Mid$ is extremely slow with larger strings (a lot of memcopy is going on)
Instr is extremely efficient in finding next hit in memory
Strings have a limit of 2GB max and since Instr only works on strings, the startpos and returnval are Long (-2G to +2G)
_Mem can handle size of your PC's RAM

Code: (Select All)
Const MAXSIZE = 2 ^ 31 - 1 '2GB

Dim a As String: a = String$(MAXSIZE, 0)
Asc(a, MAXSIZE) = 42
aa& = InStr(a, Chr$(42))
Print Len(a), InStr(a, Chr$(42)), aa&

Dim b As String * MAXSIZE
Asc(b, MAXSIZE) = 42
bb& = InStr(b, Chr$(42))
Print Len(b), InStr(b, Chr$(42)), bb&


Const MSIZE = MAXSIZE * 5 '10GB
Dim m As _MEM: m = _MemNew(MSIZE) '10GB
Dim c As String * 1: c = Chr$(42)
_MemPut m, m.OFFSET + MSIZE - 1, c
Print m.SIZE,
Dim block As String * MAXSIZE
For p&& = 0 To m.SIZE \ MAXSIZE
b = _MemGet(m, m.OFFSET + p&& * MAXSIZE, String * MAXSIZE)
mm& = InStr(b, c)
If mm& Then Exit For
Next p&&
Print m.SIZE, p&& * MAXSIZE + mm&
45y and 2M lines of MBASIC>BASICA>QBASIC>QBX>QB64 experience
Reply


Messages In This Thread
Questions about INSTR - by Circlotron - 04-25-2025, 12:01 AM
RE: Questions about INSTR - by mdijkens - 04-25-2025, 12:12 PM
RE: Questions about INSTR - by SMcNeill - 04-25-2025, 12:41 PM
RE: Questions about INSTR - by Circlotron - 04-27-2025, 03:03 AM
RE: Questions about INSTR - by mdijkens - 04-27-2025, 08:01 AM
RE: Questions about INSTR - by Circlotron - 04-27-2025, 12:33 PM
RE: Questions about INSTR - by SMcNeill - 04-27-2025, 02:04 PM
RE: Questions about INSTR - by mdijkens - 04-27-2025, 03:12 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Half baked pipe dream questions - hardware and os Parkland 9 1,329 05-23-2025, 03:00 PM
Last Post: madscijr
  _IIF limits two questions doppler 18 3,051 05-14-2025, 04:33 PM
Last Post: madscijr
  IDE suggestions / editor questions madscijr 14 2,354 05-01-2025, 12:56 PM
Last Post: madscijr
  Just a Few Questions TarotRedhand 15 2,872 09-11-2023, 12:10 PM
Last Post: DSMan195276
  Questions on style justsomeguy 23 4,424 06-28-2023, 08:31 PM
Last Post: CharlieJV

Forum Jump:


Users browsing this thread: 1 Guest(s)