Skip to content

Instantly share code, notes, and snippets.

@s0ren
Last active December 30, 2015 00:29
Show Gist options
  • Save s0ren/7749563 to your computer and use it in GitHub Desktop.
Save s0ren/7749563 to your computer and use it in GitHub Desktop.
Afkortning af tekst. C#
if (tekstSomSkalKlippes.Length > maxLængde)
{
return tekstSomSkalKlippes.Substring(0, maxLængde);
}
else
{
return tekstSomSkalKlippes;
}
// eller som metode:
public static string klip(String tekstSomSkalKlippes, int maxLængde)
{
if (tekstSomSkalKlippes.Length > maxLængde)
{
return tekstSomSkalKlippes.Substring(0, maxLængde);
}
else
{
return tekstSomSkalKlippes;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment