LibreOfficeDev 27.2 Help
Returns the text that occurs after the end of a given instance of a delimiter substring.
TEKST.NA(“Tekst”; “Scheidingsteken”(optioneel); Aantal scheidingstekens (optioneel); Hoofdlettergevoelig (optioneel); Overeenkomsteinde (optioneel); “Indien niet gevonden”)
Tekst: de originele tekst.
Delimiter: (optional) the delimiter. Multiple delimiters can be supplied. If omitted or supplied as an empty string, then returns the error #N/A or the value expressed by If Not Found.
Instance Number: (optional) the instance of the delimiter after which to extract text. The default is 1. A negative number starts searching from the end. Value 0 returns the error #N/A.
Hoofdlettergevoelig: (optioneel) stel in op 1 om een hoofdletterongevoelige match uit te voeren. De standaardwaarde is 0.
Overeenkomsteinde: (optioneel) stel in op 1 om het einde van de tekst als scheidingsteken te beschouwen. De standaardwaarde is 0.
If Not Found: (optional) the value returned if no match is found. The default is #N/A.
=TEKSTNA("To be or not to be";"of ";1;0;0;"@@@") retourneert de tekenreeks "not to be", waarbij na het scheidingsteken "of " wordt genomen.
=TEKST.NA("Te zijn of niet te zijn";"vraag";1;0;0;"@@@") retourneert de tekst "@@@" omdat het scheidingsteken "vraag" niet in de brontekst voorkomt.
COM.MICROSOFT.TEXTAFTER