Be concise.
Be useful.
All contributions dictatorially edited by webmasters to match personal tastes.
Please do not paste any copyright violating material.
Please try to avoid dependencies to third-party libraries and frameworks.
- Java
- PHP
- Python
- Ada
- C
- Clojure
- Cobol
- C++
- C++
- C#
- D
- Dart
- Elixir
- Erlang
- Erlang
- Fortran
- Go
- Haskell
- JS
- JS
- Kotlin
- Lisp
- Lua
- Lua
- Lua
- Obj-C
- Pascal
- Perl
- Ruby
- Rust
- Scala
- Smalltalk
- VB
boolean b = s.startsWith(prefix);
$b = (bool) preg_match('#^http#', $s);
But what about a variable $prefix (not a constant) ?
(def b (starts-with? s prefix))
Uses java.lang.String.startsWith()
IDENTIFICATION DIVISION.
PROGRAM-ID. prefix.
DATA DIVISION.
WORKING-STORAGE SECTION.
01 BOOLEAN-B PIC X.
88 b-TRUE VALUE "T".
88 b-FALSE VALUE "F".
PROCEDURE DIVISION.
IF s(1:3) = prefix(1:3)
SET b-TRUE TO TRUE
ELSE
SET b-FALSE TO TRUE
END-IF
STOP RUN.
Is this limited to the first 3 letters?
std::string prefix = "something";
bool b = s.compare(0, prefix.size(), prefix) == 0;
empty prefix is true
bool b = s.StartsWith(prefix);
var b = s.startsWith(prefix);
String.starts_with?(s,prefix)
prefix([], _) -> true;
prefix([Ch | Rest1], [Ch | Rest2]) ->
prefix(Rest1, Rest2);
prefix(_, _) -> false.
prefix("abc", "abcdef").
logical :: b
b = index (string, prefix) == 1
(defun check-prefix (s prefix)
(cond ((> (length prefix) (length s)) Nil)
( T ( equal prefix (subseq s 0 (length prefix ))))))
(setf b (check-prefix s prefix))
b := pos(prefix, s) = 1;
Strings in Pascal start at index 1
$b = $prefix eq substr($s,0,length($prefix));
b = s.start_with?(prefix)
val b = s.startsWith(prefix)
b := s beginsWith: prefix
Dim b As Boolean = s.StartsWith(prefix)